Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Expression.cc

    r60089f4 r9243a501  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Tue Apr 26 12:52:40 2016
     12// Last Modified On : Wed May 04 12:14:09 2016
    1313// Update Count     : 40
    1414//
     
    321321
    322322        Expression *agg = get_aggregate();
    323         os << std::string( indent, ' ' ) << "from aggregate: ";
     323        os << ", from aggregate: ";
    324324        if (agg != 0) {
    325                 os << std::string( indent+2, ' ' );
    326325                agg->print(os, indent + 2);
    327326        }
     
    359358        os << std::string( indent, ' ' ) << "from aggregate: " << std::endl;
    360359        if (agg != 0) {
    361                 os << std::string( indent+2, ' ' );
    362360                agg->print(os, indent + 2);
    363361        }
Note: See TracChangeset for help on using the changeset viewer.