We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
it
1 parent 8eb20f6 commit c1a93b3Copy full SHA for c1a93b3
src/solvers/prop/prop_conv.cpp
@@ -547,6 +547,6 @@ exprt prop_conv_solvert::get(const exprt &expr) const
547
548
void prop_conv_solvert::print_assignment(std::ostream &out) const
549
{
550
- for(const auto &it : symbols)
551
- out << it.first << " = " << prop.l_get(it.second) << "\n";
+ for(const auto &symbol : symbols)
+ out << symbol.first << " = " << prop.l_get(symbol.second) << '\n';
552
}
0 commit comments