File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -215,7 +215,9 @@ void gen_interfacet::gen_module(
215
215
std::set<irep_idt>::iterator
216
216
in_progress_it=modules_in_progress.insert (module .name ).first ;
217
217
218
- forall_symbol_module_map (it, symbol_table.symbol_module_map , module .name )
218
+ for (auto it=symbol_table.symbol_module_map .lower_bound (module .name );
219
+ it!=symbol_table.symbol_module_map .upper_bound (module .name );
220
+ it++)
219
221
{
220
222
const symbolt &symbol=lookup (it->second );
221
223
@@ -231,7 +233,9 @@ void gen_interfacet::gen_module(
231
233
232
234
os << " struct module_" << module .base_name << " {\n " ;
233
235
234
- forall_symbol_module_map (it, symbol_table.symbol_module_map , module .name )
236
+ for (auto it=symbol_table.symbol_module_map .lower_bound (module .name );
237
+ it!=symbol_table.symbol_module_map .upper_bound (module .name );
238
+ it++)
235
239
{
236
240
const symbolt &symbol=lookup (it->second );
237
241
You can’t perform that action at this time.
0 commit comments