Changes in src/Parser/ParseNode.h [13e3b50:7880579]
- File:
-
- 1 edited
-
src/Parser/ParseNode.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ParseNode.h
r13e3b50 r7880579 271 271 DeclarationNode *set_extension( bool exten ) { extension = exten; return this; } 272 272 private: 273 //StorageClass buildStorageClass() const;274 //bool buildFuncSpecifier( StorageClass key ) const;273 StorageClass buildStorageClass() const; 274 bool buildFuncSpecifier( StorageClass key ) const; 275 275 276 276 TypeData *type; 277 277 std::string name; 278 // std::list< StorageClass > storageClasses; 279 StorageClass storageClass; 280 bool isInline, isNoreturn; 278 std::list< StorageClass > storageClasses; 281 279 std::list< std::string > attributes; 282 280 ExpressionNode *bitfieldWidth; … … 286 284 LinkageSpec::Type linkage; 287 285 bool extension = false; 288 std::string error;289 286 290 287 static UniqueName anonymous;
Note:
See TracChangeset
for help on using the changeset viewer.