Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Declaration.h

    re4d7c1c r71806e0  
    340340        bool isTyped;
    341341        Type * base;
    342         enum EnumHiding { Visible, Hide } hide;
    343342
    344343        EnumDecl( const std::string & name,
     
    346345          bool isTyped = false, LinkageSpec::Spec linkage = LinkageSpec::Cforall,
    347346          Type * baseType = nullptr )
    348           : Parent( name, attributes, linkage ), isTyped(isTyped), base( baseType ) {}
     347          : Parent( name, attributes, linkage ),isTyped(isTyped), base( baseType ) {}
    349348        EnumDecl( const EnumDecl & other )
    350349          : Parent( other ), isTyped( other.isTyped), base( other.base ) {}
Note: See TracChangeset for help on using the changeset viewer.