Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/CompoundStmt.cc

    rba3706f r50377a4  
    2828using std::endl;
    2929
    30 CompoundStmt::CompoundStmt() : Statement() {
     30CompoundStmt::CompoundStmt( std::list<Label> labels ) : Statement( labels ) {
    3131}
    3232
    33 CompoundStmt::CompoundStmt( std::list<Statement *> stmts ) : Statement(), kids( stmts ) {
     33CompoundStmt::CompoundStmt( std::list<Statement *> stmts ) : Statement( noLabels ), kids( stmts ) {
    3434}
    3535
Note: See TracChangeset for help on using the changeset viewer.