We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73a513c commit 4a27d8eCopy full SHA for 4a27d8e
src/solvers/lowering/functions.cpp
@@ -19,10 +19,8 @@ void functionst::record(const function_application_exprt &function_application)
19
20
void functionst::add_function_constraints()
21
{
22
- for(function_mapt::const_iterator it = function_map.begin();
23
- it != function_map.end();
24
- it++)
25
- add_function_constraints(it->second);
+ for(const auto & function : function_map)
+ add_function_constraints(function.second);
26
}
27
28
exprt functionst::arguments_equal(
0 commit comments