Changeset 7a69460


Ignore:
Timestamp:
Apr 11, 2016, 6:00:22 PM (8 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
7eabc25
Parents:
f77f12e2
Message:

add output operator for Initializer *

Location:
src/SynTree
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Initializer.cc

    rf77f12e2 r7a69460  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Wed Apr 06 16:15:32 2016
     12// Last Modified On : Mon Apr 11 17:36:10 2016
    1313// Update Count     : 28
    1414//
     
    110110}
    111111
     112std::ostream & operator<<( std::ostream & out, Initializer * init ) {
     113        init->print( out );
     114        return out;
     115}
    112116
    113117// Local Variables: //
  • src/SynTree/Initializer.h

    rf77f12e2 r7a69460  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Wed Mar 30 13:22:08 2016
     12// Last Modified On : Mon Apr 11 17:35:30 2016
    1313// Update Count     : 19
    1414//
     
    130130};
    131131
     132std::ostream & operator<<( std::ostream & out, Initializer * init );
     133
    132134#endif // INITIALIZER_H
    133135
Note: See TracChangeset for help on using the changeset viewer.