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