Changes in src/SynTree/Expression.cc [9243a501:60089f4]
- File:
-
- 1 edited
-
src/SynTree/Expression.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Expression.cc
r9243a501 r60089f4 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed May 04 12:14:09201612 // Last Modified On : Tue Apr 26 12:52:40 2016 13 13 // Update Count : 40 14 14 // … … 321 321 322 322 Expression *agg = get_aggregate(); 323 os << ",from aggregate: ";323 os << std::string( indent, ' ' ) << "from aggregate: "; 324 324 if (agg != 0) { 325 os << std::string( indent+2, ' ' ); 325 326 agg->print(os, indent + 2); 326 327 } … … 358 359 os << std::string( indent, ' ' ) << "from aggregate: " << std::endl; 359 360 if (agg != 0) { 361 os << std::string( indent+2, ' ' ); 360 362 agg->print(os, indent + 2); 361 363 }
Note:
See TracChangeset
for help on using the changeset viewer.