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