Skip to content

Commit 534f4d2

Browse files
committed
Include list in expr.h
The code fixed here previously relied on list being included by dstring.h, which is only dragged in when USE_DSTRING is set.
1 parent d87d6e4 commit 534f4d2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/util/expr.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ Author: Daniel Kroening, [email protected]
1515
#include <functional>
1616
#include "type.h"
1717

18+
#include <list>
19+
1820
#define forall_operands(it, expr) \
1921
if((expr).has_operands()) /* NOLINT(readability/braces) */ \
2022
for(exprt::operandst::const_iterator it=(expr).operands().begin(), \

0 commit comments

Comments
 (0)