Changeset 6ef2d81


Ignore:
Timestamp:
Feb 9, 2017, 10:12:58 PM (7 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
992b089
Parents:
e994912
Message:

support missing int type in C function declarations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/DeclarationNode.cc

    re994912 r6ef2d81  
    1010// Created On       : Sat May 16 12:34:05 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Feb  9 14:48:40 2017
    13 // Update Count     : 741
     12// Last Modified On : Thu Feb  9 15:54:59 2017
     13// Update Count     : 742
    1414//
    1515
     
    506506        } // if
    507507
    508         checkQualifiers( q->type, type );
    509         addQualifiersToType( q->type, type );
    510 
    511508        if ( q->type->forall ) {
    512509                if ( type->forall ) {
     
    523520                q->type->forall = nullptr;
    524521        } // if
     522
     523        checkQualifiers( q->type, type );
     524        addQualifiersToType( q->type, type );
     525
    525526        delete q;
    526527        return this;
Note: See TracChangeset for help on using the changeset viewer.