Skip to content

Commit

Permalink
Merge pull request diffblue#2312 from diffblue/missing-iterator-headers
Browse files Browse the repository at this point in the history
missing <iterator> headers
  • Loading branch information
peterschrammel authored Jun 9, 2018
2 parents 6a16f85 + 33787ed commit 6c22191
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

#include "generic_parameter_specialization_map_keys.h"

#include <iterator>

/// \param type Source type
/// \return The vector of implicitly generic and (explicitly) generic type
/// parameters of the given type.
Expand Down
5 changes: 4 additions & 1 deletion jbmc/src/java_bytecode/java_qualifiers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@
/// Java-specific type qualifiers

#include "java_qualifiers.h"

#include <sstream>
#include <iterator>

#include <util/make_unique.h>
#include "expr2java.h"

#include "expr2java.h"

java_qualifierst &java_qualifierst::operator=(const java_qualifierst &other)
{
Expand Down
2 changes: 2 additions & 0 deletions jbmc/unit/java-testing-utils/require_parse_tree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

#include "require_parse_tree.h"

#include <iterator>

/// Find in the parsed class a specific entry within the
/// lambda_method_handle_map with a matching descriptor. Will fail if no
/// matching lambda entry found.
Expand Down
1 change: 1 addition & 0 deletions src/goto-instrument/cover_instrument_mcdc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Author: Daniel Kroening
#include <langapi/language_util.h>

#include <algorithm>
#include <iterator>

#include "cover_util.h"

Expand Down
2 changes: 2 additions & 0 deletions src/solvers/refinement/string_builtin_function.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
#include "string_builtin_function.h"

#include <algorithm>
#include <iterator>

#include "string_constraint_generator.h"

/// Get the valuation of the string, given a valuation
Expand Down

0 comments on commit 6c22191

Please sign in to comment.