Changes in src/SynTree/CompoundStmt.cc [ba3706f:50377a4]
- File:
-
- 1 edited
-
src/SynTree/CompoundStmt.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/CompoundStmt.cc
rba3706f r50377a4 28 28 using std::endl; 29 29 30 CompoundStmt::CompoundStmt( ) : Statement() {30 CompoundStmt::CompoundStmt( std::list<Label> labels ) : Statement( labels ) { 31 31 } 32 32 33 CompoundStmt::CompoundStmt( std::list<Statement *> stmts ) : Statement( ), kids( stmts ) {33 CompoundStmt::CompoundStmt( std::list<Statement *> stmts ) : Statement( noLabels ), kids( stmts ) { 34 34 } 35 35
Note:
See TracChangeset
for help on using the changeset viewer.