Skip to content

Commit c1a93b3

Browse files
Renaming it to symbol
it is not an iterator in that case
1 parent 8eb20f6 commit c1a93b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/solvers/prop/prop_conv.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,6 @@ exprt prop_conv_solvert::get(const exprt &expr) const
547547

548548
void prop_conv_solvert::print_assignment(std::ostream &out) const
549549
{
550-
for(const auto &it : symbols)
551-
out << it.first << " = " << prop.l_get(it.second) << "\n";
550+
for(const auto &symbol : symbols)
551+
out << symbol.first << " = " << prop.l_get(symbol.second) << '\n';
552552
}

0 commit comments

Comments
 (0)