Changeset 94b1f718 for src/AST/Stmt.hpp
- Timestamp:
- May 23, 2019, 6:24:16 PM (7 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum, stuck-waitfor-destruct
- Children:
- 21a44ca
- Parents:
- a16e246
- File:
-
- 1 edited
-
src/AST/Stmt.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Stmt.hpp
ra16e246 r94b1f718 244 244 computedTarget(computedTarget), kind(Goto) {} 245 245 246 const char * kindName() { return kindNames[kind]; }246 const char * kindName() const { return kindNames[kind]; } 247 247 248 248 const Stmt * accept( Visitor & v ) const override { return v.visit( this ); }
Note:
See TracChangeset
for help on using the changeset viewer.