Skip to content

Commit 8174586

Browse files
committed
Fix include order in symex
1 parent 97f14fb commit 8174586

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

src/symex/path_search.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Author: Daniel Kroening, kroening@kroening.com
99
/// \file
1010
/// Path-based Symbolic Execution
1111

12+
#include "path_search.h"
13+
1214
#include <util/simplify_expr.h>
1315
#include <util/time_stopping.h>
1416

@@ -18,8 +20,6 @@ Author: Daniel Kroening, kroening@kroening.com
1820
#include <path-symex/path_symex.h>
1921
#include <path-symex/build_goto_trace.h>
2022

21-
#include "path_search.h"
22-
2323
path_searcht::resultt path_searcht::operator()(
2424
const goto_functionst &goto_functions)
2525
{

src/symex/symex_cover.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Author: Daniel Kroening, kroening@kroening.com
99
/// \file
1010
/// Symex Test Suite Generation
1111

12+
#include "symex_parse_options.h"
13+
1214
#include <iostream>
1315

1416
#include <util/json_expr.h>
@@ -17,8 +19,6 @@ Author: Daniel Kroening, kroening@kroening.com
1719
#include <goto-programs/xml_goto_trace.h>
1820
#include <goto-programs/json_goto_trace.h>
1921

20-
#include "symex_parse_options.h"
21-
2222
std::string symex_parse_optionst::get_test(const goto_tracet &goto_trace)
2323
{
2424
bool first=true;

src/symex/symex_main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Author: Daniel Kroening, kroening@kroening.com
99
/// \file
1010
/// Symex Main Module
1111

12-
#include <util/unicode.h>
13-
1412
#include "symex_parse_options.h"
1513

14+
#include <util/unicode.h>
15+
1616
#ifdef _MSC_VER
1717
int wmain(int argc, const wchar_t **argv_wide)
1818
{

src/symex/symex_parse_options.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Author: Daniel Kroening, kroening@kroening.com
99
/// \file
1010
/// Symex Command Line Options Processing
1111

12+
#include "symex_parse_options.h"
13+
1214
#include <iostream>
1315
#include <fstream>
1416
#include <cstdlib>
@@ -52,7 +54,6 @@ Author: Daniel Kroening, kroening@kroening.com
5254
#include <path-symex/locs.h>
5355

5456
#include "path_search.h"
55-
#include "symex_parse_options.h"
5657

5758
symex_parse_optionst::symex_parse_optionst(int argc, const char **argv):
5859
parse_options_baset(SYMEX_OPTIONS, argc, argv),

0 commit comments

Comments
 (0)