Changes in src/SynTree/Declaration.h [974906e2:baf7fee]
- File:
-
- 1 edited
-
src/SynTree/Declaration.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Declaration.h
r974906e2 rbaf7fee 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // Declaration.h -- 7 // Declaration.h -- 8 8 // 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Thu Jan 07 14:48:44 201613 // Update Count : 3 412 // Last Modified On : Wed Dec 09 14:08:22 2015 13 // Update Count : 32 14 14 // 15 15 … … 91 91 Expression *get_bitfieldWidth() const { return bitfieldWidth; } 92 92 void set_bitfieldWidth( Expression *newValue ) { bitfieldWidth = newValue; } 93 ExprStmt * get_ctor() const { return ctor; }94 void set_ctor( ExprStmt * newValue ) { ctor = newValue; }95 93 96 94 virtual ObjectDecl *clone() const { return new ObjectDecl( *this ); } … … 103 101 Initializer *init; 104 102 Expression *bitfieldWidth; 105 ExprStmt * ctor;106 103 }; 107 104
Note:
See TracChangeset
for help on using the changeset viewer.