Skip to content

Commit 367f7d4

Browse files
committed
Add missing <functional> include
Headers should include what they, and not rely on nonstd/optional to provide the header.
1 parent 4b5af5d commit 367f7d4

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/solvers/flattening/boolbv_map.h

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Author: Daniel Kroening, [email protected]
1010
#ifndef CPROVER_SOLVERS_FLATTENING_BOOLBV_MAP_H
1111
#define CPROVER_SOLVERS_FLATTENING_BOOLBV_MAP_H
1212

13+
#include <functional>
1314
#include <iosfwd>
1415

1516
#include <util/type.h>

src/util/expr.h

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ Author: Daniel Kroening, [email protected]
1515
#include "validate_types.h"
1616
#include "validation_mode.h"
1717

18+
#include <functional>
19+
1820
#define forall_operands(it, expr) \
1921
for(exprt::operandst::const_iterator \
2022
it = as_const(expr).operands().begin(), \

0 commit comments

Comments
 (0)