Ignore:
Timestamp:
Aug 12, 2020, 10:31:58 AM (4 years ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
f8d05ee
Parents:
343d10e
Message:

{pass_t Pass::pass; => core_t Pass::core;} To avoid confusion about which pass we are talking about.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/TypeSubstitution.cpp

    r343d10e r7ff3e522  
    121121        Pass<Substituter> sub( *this, true );
    122122        do {
    123                 sub.pass.subCount = 0;
    124                 sub.pass.freeOnly = true;
     123                sub.core.subCount = 0;
     124                sub.core.freeOnly = true;
    125125                for ( TypeEnvType::iterator i = typeEnv.begin(); i != typeEnv.end(); ++i ) {
    126126                        i->second = i->second->accept( sub );
    127127                }
    128         } while ( sub.pass.subCount );
     128        } while ( sub.core.subCount );
    129129}
    130130
Note: See TracChangeset for help on using the changeset viewer.