Changes in src/SynTree/CompoundStmt.cc [de62360d:843054c2]
- File:
-
- 1 edited
-
src/SynTree/CompoundStmt.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/CompoundStmt.cc
rde62360d r843054c2 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Jun 23 11:37:49201513 // Update Count : 312 // Last Modified On : Mon May 18 08:11:02 2015 13 // Update Count : 1 14 14 // 15 15 … … 33 33 } 34 34 35 void CompoundStmt::print( std::ostream &os, int indent ) const{36 os << string( indent, ' ') << "CompoundStmt" << endl ;37 printAll( kids, os, indent +2 );35 void CompoundStmt::print( std::ostream &os, int indent ) { 36 os << "\r" << string(indent, ' ') << "CompoundStmt" << endl ; 37 printAll( kids, os, indent+2 ); 38 38 } 39 39
Note:
See TracChangeset
for help on using the changeset viewer.