Changeset 2a301ff for src/GenPoly/ErasableScopedMap.h
- Timestamp:
- Aug 31, 2023, 11:31:15 PM (2 years ago)
- Branches:
- master
- Children:
- 950c58e
- Parents:
- 92355883 (diff), 686912c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/GenPoly/ErasableScopedMap.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/ErasableScopedMap.h
r92355883 r2a301ff 57 57 /// Starts a new scope 58 58 void beginScope() { 59 Scope scope; 60 scopes.push_back(scope); 59 scopes.emplace_back(); 61 60 } 62 61 … … 145 144 public std::iterator< std::bidirectional_iterator_tag, value_type > { 146 145 friend class ErasableScopedMap; 147 typedef typename std::map< Key, Value >::iterator wrapped_iterator; 148 typedef typename std::vector< std::map< Key, Value > > scope_list; 149 typedef typename scope_list::size_type size_type; 146 typedef typename Scope::iterator wrapped_iterator; 147 typedef typename ScopeList::size_type size_type; 150 148 151 149 /// Checks if this iterator points to a valid item
Note:
See TracChangeset
for help on using the changeset viewer.