Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ParseNode.h

    r7305915 re04ef3a  
    1010// Created On       : Sat May 16 13:28:16 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Jun 27 23:28:10 2016
    13 // Update Count     : 242
     12// Last Modified On : Mon Jun 13 16:04:47 2016
     13// Update Count     : 240
    1414//
    1515
     
    425425        ExpressionNode *get_enumeratorValue() const { return enumeratorValue; }
    426426
    427         bool get_extension() const { return extension; }
    428         DeclarationNode *set_extension( bool exten ) { extension = exten; return this; }
    429 
    430427        DeclarationNode();
    431428        ~DeclarationNode();
     
    443440        bool hasEllipsis;
    444441        LinkageSpec::Type linkage;
    445         bool extension = false;
    446442
    447443        static UniqueName anonymous;
     
    480476        void addDeclaration( DeclarationNode *newDecl ) { decl = newDecl; }
    481477        void setCatchRest( bool newVal ) { isCatchRest = newVal; }
    482 
    483         bool get_extension() const { return extension; }
    484         StatementNode *set_extension( bool exten ) { extension = exten; return this; }
    485478
    486479        std::string get_target() const;
     
    502495        DeclarationNode *decl;
    503496        bool isCatchRest;
    504         bool extension = false;
    505497}; // StatementNode
    506498
Note: See TracChangeset for help on using the changeset viewer.