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 56ca42a commit 54a210dCopy full SHA for 54a210d
src/util/symbol_table.h
@@ -117,6 +117,18 @@ class symbol_tablet : public symbol_table_baset
117
return iteratort(internal_symbols.end());
118
}
119
120
+ typedef symbolst::const_iterator const_iteratort;
121
+
122
+ virtual const_iteratort begin() const
123
+ {
124
+ return internal_symbols.begin();
125
+ }
126
127
+ virtual const_iteratort end() const
128
129
+ return internal_symbols.end();
130
131
132
/// Check that the symbol table is well-formed
133
void validate(const validation_modet vm = validation_modet::INVARIANT) const;
134
0 commit comments