Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/CompoundStmt.cc

    r50377a4 re3e16bc  
    2929
    3030CompoundStmt::CompoundStmt( std::list<Label> labels ) : Statement( labels ) {
    31 }
    32 
    33 CompoundStmt::CompoundStmt( std::list<Statement *> stmts ) : Statement( noLabels ), kids( stmts ) {
    3431}
    3532
     
    7370}
    7471
    75 void CompoundStmt::print( std::ostream &os, Indenter indent ) const {
    76         os << "CompoundStmt" << endl;
    77         printAll( kids, os, indent+1 );
     72void CompoundStmt::print( std::ostream &os, int indent ) const {
     73        os << "CompoundStmt" << endl ;
     74        printAll( kids, os, indent + 2 );
    7875}
    7976
Note: See TracChangeset for help on using the changeset viewer.