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 a9afb9a commit acc46d6Copy full SHA for acc46d6
src/util/symbol_table.h
@@ -122,15 +122,8 @@ class symbol_tablet : public symbol_table_baset
122
123
typedef symbolst::const_iterator const_iteratort;
124
125
- virtual const_iteratort begin() const
126
- {
127
- return internal_symbols.begin();
128
- }
129
-
130
- virtual const_iteratort end() const
131
132
- return internal_symbols.end();
133
+ using symbol_table_baset::begin;
+ using symbol_table_baset::end;
134
135
/// Check that the symbol table is well-formed
136
void validate(const validation_modet vm = validation_modet::INVARIANT) const;
0 commit comments