File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ void value_sett::output(
121
121
{
122
122
#if 0
123
123
const symbolt &symbol=ns.lookup(e.identifier);
124
- display_name=symbol.display_name()+e.suffix;
124
+ display_name=id2string( symbol.display_name() )+e.suffix;
125
125
identifier=symbol.name;
126
126
#else
127
127
identifier=id2string (e.identifier );
@@ -880,14 +880,11 @@ void value_sett::get_value_set_rec(
880
880
#endif
881
881
}
882
882
883
- #if 0
883
+ #ifdef DEBUG
884
884
std::cout << " GET_VALUE_SET_REC RESULT:\n " ;
885
- for(object_map_dt::const_iterator
886
- it=dest.read().begin();
887
- it!=dest.read().end();
888
- it++)
885
+ for (const auto &obj : dest.read ())
889
886
{
890
- const exprt &e=to_expr(it );
887
+ const exprt &e=to_expr (obj );
891
888
std::cout << " " << from_expr (ns, " " , e) << " \n " ;
892
889
}
893
890
std::cout << " \n " ;
You can’t perform that action at this time.
0 commit comments