Skip to content

Commit 97df13f

Browse files
authored
Merge pull request #7113 from diffblue/narrow_h
add missing narrow.h includes
2 parents f3f0044 + 65784b5 commit 97df13f

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/solvers/lowering/byte_operators.cpp

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,22 @@ Author: Daniel Kroening, [email protected]
66
77
\*******************************************************************/
88

9-
#include "expr_lowering.h"
10-
11-
#include <algorithm>
12-
139
#include <util/arith_tools.h>
1410
#include <util/bitvector_expr.h>
1511
#include <util/byte_operators.h>
1612
#include <util/c_types.h>
1713
#include <util/endianness_map.h>
1814
#include <util/expr_util.h>
1915
#include <util/namespace.h>
16+
#include <util/narrow.h>
2017
#include <util/pointer_offset_size.h>
2118
#include <util/simplify_expr.h>
2219
#include <util/string_constant.h>
2320

21+
#include "expr_lowering.h"
22+
23+
#include <algorithm>
24+
2425
static exprt bv_to_expr(
2526
const exprt &bitvector_expr,
2627
const typet &target_type,

src/solvers/prop/bdd_expr.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Author: Michael Tautschnig, [email protected]
1313

1414
#include <util/expr_util.h>
1515
#include <util/invariant.h>
16+
#include <util/narrow.h>
1617
#include <util/std_expr.h>
1718

1819
bddt bdd_exprt::from_expr_rec(const exprt &expr)

0 commit comments

Comments
 (0)