Changes in / [17b6fc9:506d4f0]
- File:
-
- 1 edited
-
src/GenPoly/InstantiateGeneric.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/InstantiateGeneric.cc
r17b6fc9 r506d4f0 172 172 InstantiationMap< AggregateDecl, AggregateDecl > instantiations; 173 173 /// Set of types which are dtype-only generic (and therefore have static layout) 174 std::set<AggregateDecl *> dtypeStatics;174 ScopedSet< AggregateDecl* > dtypeStatics; 175 175 /// Namer for concrete types 176 176 UniqueName typeNamer; … … 505 505 void GenericInstantiator::beginScope() { 506 506 instantiations.beginScope(); 507 dtypeStatics.beginScope(); 507 508 } 508 509 509 510 void GenericInstantiator::endScope() { 510 511 instantiations.endScope(); 512 dtypeStatics.endScope(); 511 513 } 512 514
Note:
See TracChangeset
for help on using the changeset viewer.