Changeset 9dc3eb21
- Timestamp:
 - Oct 1, 2020, 2:13:41 PM (5 years ago)
 - Branches:
 - ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
 - Children:
 - 1c1395d
 - Parents:
 - 08e8851
 - File:
 - 
      
- 1 edited
 
- 
          
  src/GenPoly/InstantiateGeneric.cc (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
src/GenPoly/InstantiateGeneric.cc
r08e8851 r9dc3eb21 172 172 InstantiationMap< AggregateDecl, AggregateDecl > instantiations; 173 173 /// Set of types which are dtype-only generic (and therefore have static layout) 174 ScopedSet< AggregateDecl* > dtypeStatics; 174 // ScopedSet< AggregateDecl* > dtypeStatics; 175 std::set<AggregateDecl *> dtypeStatics; 175 176 /// Namer for concrete types 176 177 UniqueName typeNamer; … … 505 506 void GenericInstantiator::beginScope() { 506 507 instantiations.beginScope(); 507 dtypeStatics.beginScope();508 //dtypeStatics.beginScope(); 508 509 } 509 510 510 511 void GenericInstantiator::endScope() { 511 512 instantiations.endScope(); 512 dtypeStatics.endScope();513 //dtypeStatics.endScope(); 513 514 } 514 515  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.