Changes in src/SynTree/Declaration.h [fc9153d:f0ecf9b]
- File:
-
- 1 edited
-
src/SynTree/Declaration.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Declaration.h
rfc9153d rf0ecf9b 319 319 EnumDecl( const EnumDecl &other ) : Parent( other ) {} 320 320 321 bool valueOf( Declaration * enumerator, long long int & value );322 323 321 virtual EnumDecl *clone() const override { return new EnumDecl( *this ); } 324 322 virtual void accept( Visitor &v ) override { v.visit( this ); } 325 323 virtual Declaration *acceptMutator( Mutator &m ) override { return m.mutate( this ); } 326 324 private: 327 std::map< std::string, long long int > enumValues;328 325 virtual std::string typeString() const override; 329 326 };
Note:
See TracChangeset
for help on using the changeset viewer.