Changes in / [17b6fc9:506d4f0]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/GenPoly/InstantiateGeneric.cc

    r17b6fc9 r506d4f0  
    172172                InstantiationMap< AggregateDecl, AggregateDecl > instantiations;
    173173                /// Set of types which are dtype-only generic (and therefore have static layout)
    174                 std::set<AggregateDecl *> dtypeStatics;
     174                ScopedSet< AggregateDecl* > dtypeStatics;
    175175                /// Namer for concrete types
    176176                UniqueName typeNamer;
     
    505505        void GenericInstantiator::beginScope() {
    506506                instantiations.beginScope();
     507                dtypeStatics.beginScope();
    507508        }
    508509
    509510        void GenericInstantiator::endScope() {
    510511                instantiations.endScope();
     512                dtypeStatics.endScope();
    511513        }
    512514
Note: See TracChangeset for help on using the changeset viewer.