Changes in src/SynTree/Declaration.h [e4d7c1c:71806e0]
- File:
-
- 1 edited
-
src/SynTree/Declaration.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Declaration.h
re4d7c1c r71806e0 340 340 bool isTyped; 341 341 Type * base; 342 enum EnumHiding { Visible, Hide } hide;343 342 344 343 EnumDecl( const std::string & name, … … 346 345 bool isTyped = false, LinkageSpec::Spec linkage = LinkageSpec::Cforall, 347 346 Type * baseType = nullptr ) 348 : Parent( name, attributes, linkage ), isTyped(isTyped), base( baseType ) {}347 : Parent( name, attributes, linkage ),isTyped(isTyped), base( baseType ) {} 349 348 EnumDecl( const EnumDecl & other ) 350 349 : Parent( other ), isTyped( other.isTyped), base( other.base ) {}
Note:
See TracChangeset
for help on using the changeset viewer.