Changes in src/SynTree/CompoundStmt.cc [de62360d:60089f4]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/CompoundStmt.cc
rde62360d r60089f4 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // XXX.cc -- 7 // XXX.cc -- 8 8 // 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Tue Jun 23 11:37:49 201511 // Last Modified By : Rob Schluntz 12 // Last Modified On : Mon May 02 15:10:47 2016 13 13 // Update Count : 3 14 14 // 15 15 16 16 #include "Statement.h" 17 #include " utility.h"17 #include "Common/utility.h" 18 18 #include <algorithm> 19 19 #include <functional> … … 34 34 35 35 void CompoundStmt::print( std::ostream &os, int indent ) const { 36 os << string( indent, ' ' ) <<"CompoundStmt" << endl ;36 os << "CompoundStmt" << endl ; 37 37 printAll( kids, os, indent + 2 ); 38 38 }
Note:
See TracChangeset
for help on using the changeset viewer.