Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Declaration.h

    rfc9153d rf0ecf9b  
    319319        EnumDecl( const EnumDecl &other ) : Parent( other ) {}
    320320
    321         bool valueOf( Declaration * enumerator, long long int & value );
    322 
    323321        virtual EnumDecl *clone() const override { return new EnumDecl( *this ); }
    324322        virtual void accept( Visitor &v ) override { v.visit( this ); }
    325323        virtual Declaration *acceptMutator( Mutator &m )  override { return m.mutate( this ); }
    326324  private:
    327         std::map< std::string, long long int > enumValues;
    328325        virtual std::string typeString() const override;
    329326};
Note: See TracChangeset for help on using the changeset viewer.