Ignore:
Timestamp:
May 14, 2015, 1:54:02 PM (9 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
5c7fb6c
Parents:
c11e31c (diff), b1a6d6b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

update merged files from master

File:
1 edited

Legend:

Unmodified
Added
Removed
  • translator/SymTab/Validate.cc

    rc11e31c r4bf5298  
    155155    };
    156156
    157     void validate( std::list< Declaration * > &translationUnit, bool doDebug, const Indexer *indexer ) {
     157    void validate( std::list< Declaration * > &translationUnit, bool doDebug ) {
    158158        Pass1 pass1;
    159         Pass2 pass2( doDebug, indexer );
    160         Pass3 pass3( indexer );
     159        Pass2 pass2( doDebug, 0 );
     160        Pass3 pass3( 0 );
    161161        EliminateTypedef::eliminateTypedef( translationUnit );
    162162        HoistStruct::hoistStruct( translationUnit );
     
    166166        acceptAll( translationUnit, pass3 );
    167167    }
    168 
     168   
    169169    void validateType( Type *type, const Indexer *indexer ) {
    170170        Pass1 pass1;
Note: See TracChangeset for help on using the changeset viewer.