Changes in src/SynTree/CompoundStmt.cc [50377a4:d67cdb7]
- File:
-
- 1 edited
-
src/SynTree/CompoundStmt.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/CompoundStmt.cc
r50377a4 rd67cdb7 73 73 } 74 74 75 void CompoundStmt::print( std::ostream &os, Indenterindent ) const {76 os << "CompoundStmt" << endl ;77 printAll( kids, os, indent +1);75 void CompoundStmt::print( std::ostream &os, int indent ) const { 76 os << "CompoundStmt" << endl ; 77 printAll( kids, os, indent + 2 ); 78 78 } 79 79
Note:
See TracChangeset
for help on using the changeset viewer.