File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -93,10 +93,10 @@ void symbol_tablet::erase(const symbolst::const_iterator &entry)
93
93
{
94
94
const symbolt &symbol=entry->second ;
95
95
96
- symbol_base_mapt::const_iterator
97
- base_it= symbol_base_map.lower_bound (entry-> second .base_name );
98
- symbol_base_mapt::const_iterator
99
- base_it_end= symbol_base_map.upper_bound (entry-> second .base_name );
96
+ symbol_base_mapt::const_iterator base_it =
97
+ symbol_base_map.lower_bound (symbol .base_name );
98
+ symbol_base_mapt::const_iterator base_it_end =
99
+ symbol_base_map.upper_bound (symbol .base_name );
100
100
while (base_it!=base_it_end && base_it->second !=symbol.name )
101
101
++base_it;
102
102
INVARIANT (
@@ -107,14 +107,14 @@ void symbol_tablet::erase(const symbolst::const_iterator &entry)
107
107
" current base_name: " +id2string (symbol.base_name )+" )" );
108
108
internal_symbol_base_map.erase (base_it);
109
109
110
- if (!entry-> second .module .empty ())
110
+ if (!symbol .module .empty ())
111
111
{
112
112
symbol_module_mapt::const_iterator module_it =
113
113
symbol_module_map.lower_bound (
114
- entry-> second .module ),
114
+ symbol .module ),
115
115
module_it_end =
116
116
symbol_module_map.upper_bound (
117
- entry-> second .module );
117
+ symbol .module );
118
118
while (module_it != module_it_end && module_it->second != symbol.name )
119
119
++module_it;
120
120
INVARIANT (
You can’t perform that action at this time.
0 commit comments