Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/AggregateDecl.cc

    r5d125e4 r4040425  
    1010// Created On       : Sun May 17 23:56:39 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Jul 13 18:03:30 2016
    13 // Update Count     : 10
     12// Last Modified On : Wed Mar  2 17:28:00 2016
     13// Update Count     : 7
    1414//
    1515
     
    1919
    2020
    21 AggregateDecl::AggregateDecl( const std::string &name ) : Parent( name, DeclarationNode::NoStorageClass, LinkageSpec::Cforall ), body( false ) {
     21AggregateDecl::AggregateDecl( const std::string &name ) : Parent( name, DeclarationNode::NoStorageClass, LinkageSpec::Cforall ) {
    2222}
    2323
     
    2525        cloneAll( other.members, members );
    2626        cloneAll( other.parameters, parameters );
    27         body = other.body;
    2827}
    2928
     
    3837
    3938        os << typeString() << " " << get_name();
    40         os << string( indent+2, ' ' ) << "with body " << has_body() << endl;
    41 
    4239        if ( ! parameters.empty() ) {
    4340                os << endl << string( indent+2, ' ' ) << "with parameters" << endl;
     
    5552
    5653        os << typeString() << " " << get_name();
    57         os << string( indent+2, ' ' ) << "with body " << has_body() << endl;
    58 
    5954        if ( ! parameters.empty() ) {
    6055                os << endl << string( indent+2, ' ' ) << "with parameters" << endl;
Note: See TracChangeset for help on using the changeset viewer.