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.
it
1 parent beddcaf commit a88262eCopy full SHA for a88262e
src/solvers/flattening/boolbv.cpp
@@ -686,12 +686,8 @@ bool boolbvt::is_unbounded_array(const typet &type) const
686
void boolbvt::print_assignment(std::ostream &out) const
687
{
688
arrayst::print_assignment(out);
689
-
690
- for(const auto &it : map.mapping)
691
- {
692
- out << it.first << "="
693
- << it.second.get_value(prop) << '\n';
694
- }
+ for(const auto &pair : map.mapping)
+ out << pair.first << "=" << pair.second.get_value(prop) << '\n';
695
}
696
697
void boolbvt::build_offset_map(const struct_typet &src, offset_mapt &dest)
0 commit comments