Changes in src/ResolvExpr/PolyCost.cc [00ac42e:a180ded]
- File:
-
- 1 edited
-
src/ResolvExpr/PolyCost.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/PolyCost.cc
r00ac42e ra180ded 39 39 40 40 void PolyCost::previsit(TypeInstType * typeInst) { 41 if ( const EqvClass *eqvClass = tenv.lookup( typeInst->name ) ) { 42 if ( eqvClass->type ) { 43 if ( TypeInstType * otherTypeInst = dynamic_cast< TypeInstType* >( eqvClass->type ) ) { 41 EqvClass eqvClass; 42 if ( tenv.lookup( typeInst->name, eqvClass ) ) { 43 if ( eqvClass.type ) { 44 if ( TypeInstType * otherTypeInst = dynamic_cast< TypeInstType* >( eqvClass.type ) ) { 44 45 if ( indexer.lookupType( otherTypeInst->name ) ) { 45 46 // bound to opaque type
Note:
See TracChangeset
for help on using the changeset viewer.