Changeset 70d826cd for src/SynTree
- Timestamp:
- Sep 12, 2017, 5:48:44 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- a506df4
- Parents:
- a0c7dc36
- Location:
- src/SynTree
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Statement.cc
ra0c7dc36 r70d826cd 472 472 } 473 473 474 NullStmt::NullStmt( std::list<Label> labels ) : CompoundStmt( labels ) {}475 NullStmt::NullStmt() : CompoundStmt( std::list<Label>() ) {}474 NullStmt::NullStmt( std::list<Label> labels ) : Statement( labels ) {} 475 NullStmt::NullStmt() : Statement( std::list<Label>() ) {} 476 476 477 477 void NullStmt::print( std::ostream &os, __attribute__((unused)) int indent ) const { -
src/SynTree/Statement.h
ra0c7dc36 r70d826cd 67 67 }; 68 68 69 class NullStmt : public CompoundStmt {69 class NullStmt : public Statement { 70 70 public: 71 71 NullStmt();
Note: See TracChangeset
for help on using the changeset viewer.