Changes in src/Parser/DeclarationNode.cc [a7c90d4:c3396e0]
- File:
-
- 1 edited
-
src/Parser/DeclarationNode.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/DeclarationNode.cc
ra7c90d4 rc3396e0 10 10 // Created On : Sat May 16 12:34:05 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Mar 7 08:02:09201713 // Update Count : 93 612 // Last Modified On : Tue Mar 7 17:28:56 2017 13 // Update Count : 937 14 14 // 15 15 … … 359 359 DeclarationNode * newnode = new DeclarationNode; 360 360 newnode->type = new TypeData( TypeData::Pointer ); 361 return newnode->addQualifiers( qualifiers ); 361 if ( qualifiers ) { 362 return newnode->addQualifiers( qualifiers ); 363 } else { 364 return newnode; 365 } // if 362 366 } // DeclarationNode::newPointer 363 367
Note:
See TracChangeset
for help on using the changeset viewer.