Skip to content

Commit 33787ed

Browse files
author
Daniel Kroening
committed
missing <iterator> header
1 parent 6877b21 commit 33787ed

File tree

5 files changed

+11
-1
lines changed

5 files changed

+11
-1
lines changed

jbmc/src/java_bytecode/generic_parameter_specialization_map_keys.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
#include "generic_parameter_specialization_map_keys.h"
44

5+
#include <iterator>
6+
57
/// \param type Source type
68
/// \return The vector of implicitly generic and (explicitly) generic type
79
/// parameters of the given type.

jbmc/src/java_bytecode/java_qualifiers.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@
44
/// Java-specific type qualifiers
55

66
#include "java_qualifiers.h"
7+
78
#include <sstream>
9+
#include <iterator>
10+
811
#include <util/make_unique.h>
9-
#include "expr2java.h"
1012

13+
#include "expr2java.h"
1114

1215
java_qualifierst &java_qualifierst::operator=(const java_qualifierst &other)
1316
{

jbmc/unit/java-testing-utils/require_parse_tree.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
#include "require_parse_tree.h"
1010

11+
#include <iterator>
12+
1113
/// Find in the parsed class a specific entry within the
1214
/// lambda_method_handle_map with a matching descriptor. Will fail if no
1315
/// matching lambda entry found.

src/goto-instrument/cover_instrument_mcdc.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Author: Daniel Kroening
1414
#include <langapi/language_util.h>
1515

1616
#include <algorithm>
17+
#include <iterator>
1718

1819
#include "cover_util.h"
1920

src/solvers/refinement/string_builtin_function.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
#include "string_builtin_function.h"
55

66
#include <algorithm>
7+
#include <iterator>
8+
79
#include "string_constraint_generator.h"
810

911
/// Get the valuation of the string, given a valuation

0 commit comments

Comments
 (0)