We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af31813 commit 8e99272Copy full SHA for 8e99272
src/solvers/prop/prop_conv_store.cpp
@@ -31,20 +31,14 @@ literalt prop_conv_storet::convert(const exprt &expr)
31
32
void prop_conv_storet::constraintst::replay(prop_convt &dest) const
33
{
34
- for(constraint_listt::const_iterator
35
- it=constraint_list.begin();
36
- it!=constraint_list.end();
37
- it++)
38
- it->replay(dest);
+ for(const auto &c : constraint_list)
+ c.replay(dest);
39
}
40
41
void prop_conv_storet::constraintst::print(std::ostream &out) const
42
43
44
45
46
47
- it->print(out);
+ c.print(out);
48
49
50
void prop_conv_storet::constraintt::replay(prop_convt &dest) const
0 commit comments