Changes in src/Parser/DeclarationNode.cc [5d125e4:8e9cbb2]
- File:
-
- 1 edited
-
src/Parser/DeclarationNode.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/DeclarationNode.cc
r5d125e4 r8e9cbb2 10 10 // Created On : Sat May 16 12:34:05 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T ue Jul 12 20:49:31 201613 // Update Count : 16 412 // Last Modified On : Thu Jun 30 14:39:51 2016 13 // Update Count : 163 14 14 // 15 15 … … 184 184 } // DeclarationNode::newFromTypedef 185 185 186 DeclarationNode *DeclarationNode::newAggregate( Aggregate kind, const std::string *name, ExpressionNode *actuals, DeclarationNode *fields , bool body) {186 DeclarationNode *DeclarationNode::newAggregate( Aggregate kind, const std::string *name, ExpressionNode *actuals, DeclarationNode *fields ) { 187 187 DeclarationNode *newnode = new DeclarationNode; 188 188 newnode->type = new TypeData( TypeData::Aggregate ); … … 194 194 newnode->type->aggregate->actuals = actuals; 195 195 newnode->type->aggregate->fields = fields; 196 newnode->type->aggregate->body = body;197 196 return newnode; 198 197 } // DeclarationNode::newAggregate
Note:
See TracChangeset
for help on using the changeset viewer.