Changes in src/GenPoly/ErasableScopedMap.h [7f1be01:e9b5043]
- File:
-
- 1 edited
-
src/GenPoly/ErasableScopedMap.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/ErasableScopedMap.h
r7f1be01 re9b5043 57 57 /// Starts a new scope 58 58 void beginScope() { 59 scopes.emplace_back(); 59 Scope scope; 60 scopes.push_back(scope); 60 61 } 61 62 … … 144 145 public std::iterator< std::bidirectional_iterator_tag, value_type > { 145 146 friend class ErasableScopedMap; 146 typedef typename Scope::iterator wrapped_iterator; 147 typedef typename ScopeList::size_type size_type; 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; 148 150 149 151 /// Checks if this iterator points to a valid item
Note:
See TracChangeset
for help on using the changeset viewer.