Changes in / [7cc6bd6:2e3a379]


Ignore:
Location:
src/SynTree
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Expression.cc

    r7cc6bd6 r2e3a379  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Wed May 04 12:17:51 2016
     12// Last Modified On : Wed Apr 27 17:07:19 2016
    1313// Update Count     : 40
    1414//
     
    323323
    324324        Expression *agg = get_aggregate();
    325         os << ", from aggregate: ";
     325        os << std::string( indent, ' ' ) << "from aggregate: ";
    326326        if (agg != 0) {
     327                os << std::string( indent+2, ' ' );
    327328                agg->print(os, indent + 2);
    328329        }
     
    360361        os << std::string( indent, ' ' ) << "from aggregate: " << std::endl;
    361362        if (agg != 0) {
     363                os << std::string( indent+2, ' ' );
    362364                agg->print(os, indent + 2);
    363365        }
  • src/SynTree/FunctionDecl.cc

    r7cc6bd6 r2e3a379  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // FunctionDecl.cc --
     7// FunctionDecl.cc -- 
    88//
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Rob Schluntz
    12 // Last Modified On : Tue May 03 15:37:43 2016
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Mon Jul 13 18:11:44 2015
    1313// Update Count     : 19
    1414//
     
    5252        using std::endl;
    5353        using std::string;
    54 
     54       
    5555        if ( get_name() != "" ) {
    5656                os << get_name() << ": ";
     
    8787        if ( statements ) {
    8888                os << string( indent + 2, ' ' ) << "with body " << endl;
    89                 os << string( indent + 4, ' ' );
    9089                statements->print( os, indent + 4 );
    9190        } // if
     
    9594        using std::endl;
    9695        using std::string;
    97 
     96       
    9897        if ( get_name() != "" ) {
    9998                os << get_name() << ": ";
  • src/SynTree/ObjectDecl.cc

    r7cc6bd6 r2e3a379  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Wed May 04 12:18:28 2016
     12// Last Modified On : Tue Apr 26 12:56:27 2016
    1313// Update Count     : 30
    1414//
     
    5757
    5858        if ( init ) {
    59                 os << std::string(indent, ' ');
    6059                os << " with initializer ";
    6160                init->print( os, indent );
     
    6463
    6564        if ( bitfieldWidth ) {
    66                 os << std::string(indent, ' ');
    6765                os << " with bitfield width ";
    6866                bitfieldWidth->print( os );
Note: See TracChangeset for help on using the changeset viewer.