Changes in src/Parser/ParseNode.h [82ff4ed1:7cf8006]
- File:
-
- 1 edited
-
src/Parser/ParseNode.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ParseNode.h
r82ff4ed1 r7cf8006 10 10 // Created On : Sat May 16 13:28:16 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Oct 18 16:22:15202213 // Update Count : 93 712 // Last Modified On : Wed Nov 2 21:27:07 2022 13 // Update Count : 939 14 14 // 15 15 … … 168 168 Ctor, Dtor, 169 169 }; // OperKinds 170 171 enum class EnumHiding { Visible, Hide }; 170 172 171 173 struct LabelNode { … … 240 242 static DeclarationNode * newEnumConstant( const std::string * name, ExpressionNode * constant ); 241 243 static DeclarationNode * newEnumValueGeneric( const std::string * name, InitializerNode * init ); 244 static DeclarationNode * newEnumInLine( const std::string name ); 242 245 static DeclarationNode * newName( const std::string * ); 243 246 static DeclarationNode * newFromTypeGen( const std::string *, ExpressionNode * params ); … … 339 342 340 343 bool inLine = false; 344 bool enumInLine = false; 341 345 Type::FuncSpecifiers funcSpecs; 342 346 Type::StorageClasses storageClasses;
Note:
See TracChangeset
for help on using the changeset viewer.