Changes in src/SynTree/Attribute.cc [50377a4:ea6332d]
- File:
-
- 1 edited
-
src/SynTree/Attribute.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Attribute.cc
r50377a4 rea6332d 28 28 } 29 29 30 void Attribute::print( std::ostream &os, Indenterindent ) const {30 void Attribute::print( std::ostream &os, int indent ) const { 31 31 using std::endl; 32 32 using std::string; … … 36 36 if ( ! parameters.empty() ) { 37 37 os << " with parameters: " << endl; 38 printAll( parameters, os, indent +1);38 printAll( parameters, os, indent ); 39 39 } 40 40 }
Note:
See TracChangeset
for help on using the changeset viewer.