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.
1 parent 8a0135e commit f76d437Copy full SHA for f76d437
src/goto-symex/goto_symex_state.h
@@ -69,8 +69,7 @@ class goto_symex_statet final
69
70
unsigned current_count(const irep_idt &identifier) const
71
{
72
- current_namest::const_iterator it=
73
- current_names.find(identifier);
+ const auto it = current_names.find(identifier);
74
return it==current_names.end()?0:it->second.second;
75
}
76
@@ -235,8 +234,7 @@ class goto_symex_statet final
235
234
236
unsigned level2_current_count(const irep_idt &identifier) const
237
238
- level2t::current_namest::const_iterator it=
239
- level2_current_names.find(identifier);
+ const auto it = level2_current_names.find(identifier);
240
return it==level2_current_names.end()?0:it->second.second;
241
242
};
0 commit comments