We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e99272 commit 4b5467cCopy full SHA for 4b5467c
src/solvers/prop/prop_conv.cpp
@@ -530,8 +530,6 @@ exprt prop_conv_solvert::get(const exprt &expr) const
530
531
void prop_conv_solvert::print_assignment(std::ostream &out) const
532
{
533
- for(symbolst::const_iterator it=symbols.begin();
534
- it!=symbols.end();
535
- it++)
536
- out << it->first << " = " << prop.l_get(it->second) << "\n";
+ for(const auto &it : symbols)
+ out << it.first << " = " << prop.l_get(it.second) << "\n";
537
}
0 commit comments