Skip to content

Commit 3180e83

Browse files
Fix relative include paths
1 parent 108129c commit 3180e83

15 files changed

+21
-18
lines changed

src/ansi-c/literals/convert_float_literal.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ Author: Daniel Kroening, [email protected]
2121
#include <util/std_types.h>
2222
#include <util/string2int.h>
2323

24+
#include <ansi-c/gcc_types.h>
25+
2426
#include "parse_float.h"
25-
#include "../gcc_types.h"
2627

2728
exprt convert_float_literal(const std::string &src)
2829
{

src/goto-instrument/wmm/goto2graph.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ Date: 2012
2121

2222
#include <linking/static_lifetime_init.h>
2323

24-
#include "../rw_set.h"
24+
#include <goto-instrument/rw_set.h>
25+
2526
#include "fence.h"
2627

2728
// #define PRINT_UNSAFES

src/goto-instrument/wmm/shared_buffers.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ Author: Daniel Kroening, [email protected]
1212

1313
#include <linking/static_lifetime_init.h>
1414

15-
#include "../rw_set.h"
15+
#include <goto-instrument/rw_set.h>
16+
1617
#include "fence.h"
1718

1819
/// returns a unique id (for fresh variables)

src/goto-instrument/wmm/weak_memory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Date: September 2011
2727

2828
#include <linking/static_lifetime_init.h>
2929

30-
#include "../rw_set.h"
30+
#include <goto-instrument/rw_set.h>
3131

3232
#include "shared_buffers.h"
3333
#include "goto2graph.h"

src/solvers/flattening/boolbv.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ Author: Daniel Kroening, [email protected]
2626

2727
#include "boolbv_type.h"
2828

29-
#include "../floatbv/float_utils.h"
30-
#include "../lowering/expr_lowering.h"
29+
#include <solvers/floatbv/float_utils.h>
30+
#include <solvers/lowering/expr_lowering.h>
3131

3232
bool boolbvt::literal(
3333
const exprt &expr,

src/solvers/flattening/boolbv_abs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Author: Daniel Kroening, [email protected]
1212

1313
#include "boolbv_type.h"
1414

15-
#include "../floatbv/float_utils.h"
15+
#include <solvers/floatbv/float_utils.h>
1616

1717
bvt boolbvt::convert_abs(const exprt &expr)
1818
{

src/solvers/flattening/boolbv_add_sub.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Author: Daniel Kroening, [email protected]
1111
#include <util/invariant.h>
1212
#include <util/std_types.h>
1313

14-
#include "../floatbv/float_utils.h"
14+
#include <solvers/floatbv/float_utils.h>
1515

1616
bvt boolbvt::convert_add_sub(const exprt &expr)
1717
{

src/solvers/flattening/boolbv_bv_rel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Author: Daniel Kroening, [email protected]
1212

1313
#include "boolbv_type.h"
1414

15-
#include "../floatbv/float_utils.h"
15+
#include <solvers/floatbv/float_utils.h>
1616

1717
literalt boolbvt::convert_bv_rel(const exprt &expr)
1818
{

src/solvers/flattening/boolbv_floatbv_op.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Author: Daniel Kroening, [email protected]
1313

1414
#include <util/std_types.h>
1515

16-
#include "../floatbv/float_utils.h"
16+
#include <solvers/floatbv/float_utils.h>
1717

1818
bvt boolbvt::convert_floatbv_typecast(const floatbv_typecast_exprt &expr)
1919
{

src/solvers/flattening/boolbv_ieee_float_rel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Author: Daniel Kroening, [email protected]
1212

1313
#include "boolbv_type.h"
1414

15-
#include "../floatbv/float_utils.h"
15+
#include <solvers/floatbv/float_utils.h>
1616

1717
literalt boolbvt::convert_ieee_float_rel(const exprt &expr)
1818
{

0 commit comments

Comments
 (0)