Ignore:
Timestamp:
May 17, 2015, 1:19:35 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:
0dd3a2f
Parents:
b87a5ed
Message:

licencing: second groups of files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • translator/Parser/DeclarationNode.cc

    rb87a5ed ra32b204  
    531531                TypeData *prevBase = type;
    532532                TypeData *curBase = type->base;
    533                 while( curBase != 0 ) {
     533                while ( curBase != 0 ) {
    534534                        prevBase = curBase;
    535535                        curBase = curBase->base;
     
    591591        assert( a );
    592592        TypeData *cur = a;
    593         while( cur->base ) {
     593        while ( cur->base ) {
    594594                cur = cur->base;
    595595        }
     
    660660        DeclarationNode *newnode = new DeclarationNode;
    661661        TypeData *srcType = type;
    662         while( srcType->base ) {
     662        while ( srcType->base ) {
    663663                srcType = srcType->base;
    664664        }
     
    686686                if ( type ) {
    687687                        TypeData *srcType = type;
    688                         while( srcType->base ) {
     688                        while ( srcType->base ) {
    689689                                srcType = srcType->base;
    690690                        }
     
    763763        std::back_insert_iterator< std::list< Declaration* > > out( outputList );
    764764        const DeclarationNode *cur = firstNode;
    765         while( cur ) {
     765        while ( cur ) {
    766766                try {
    767767                        if ( DeclarationNode *extr = cur->extractAggregate() ) {
     
    790790        std::back_insert_iterator< std::list< DeclarationWithType* > > out( outputList );
    791791        const DeclarationNode *cur = firstNode;
    792         while( cur ) {
     792        while ( cur ) {
    793793                try {
    794794///       if ( DeclarationNode *extr = cur->extractAggregate() ) {
     
    827827        std::back_insert_iterator< std::list< Type* > > out( outputList );
    828828        const DeclarationNode *cur = firstNode;
    829         while( cur ) {
     829        while ( cur ) {
    830830                try {
    831831                        *out++ = cur->buildType();
Note: See TracChangeset for help on using the changeset viewer.