Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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