Changes in src/Parser/ParseNode.h [7305915:e04ef3a]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ParseNode.h
r7305915 re04ef3a 10 10 // Created On : Sat May 16 13:28:16 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Jun 27 23:28:10201613 // Update Count : 24 212 // Last Modified On : Mon Jun 13 16:04:47 2016 13 // Update Count : 240 14 14 // 15 15 … … 425 425 ExpressionNode *get_enumeratorValue() const { return enumeratorValue; } 426 426 427 bool get_extension() const { return extension; }428 DeclarationNode *set_extension( bool exten ) { extension = exten; return this; }429 430 427 DeclarationNode(); 431 428 ~DeclarationNode(); … … 443 440 bool hasEllipsis; 444 441 LinkageSpec::Type linkage; 445 bool extension = false;446 442 447 443 static UniqueName anonymous; … … 480 476 void addDeclaration( DeclarationNode *newDecl ) { decl = newDecl; } 481 477 void setCatchRest( bool newVal ) { isCatchRest = newVal; } 482 483 bool get_extension() const { return extension; }484 StatementNode *set_extension( bool exten ) { extension = exten; return this; }485 478 486 479 std::string get_target() const; … … 502 495 DeclarationNode *decl; 503 496 bool isCatchRest; 504 bool extension = false;505 497 }; // StatementNode 506 498
Note:
See TracChangeset
for help on using the changeset viewer.