Changeset c8dfcd3 for src/Parser


Ignore:
Timestamp:
Aug 30, 2016, 5:15:34 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, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
fba44f8
Parents:
fa463f1
Message:

insert implicit ctor/dtors if field is unhandled in a struct ctor/dtor

Location:
src/Parser
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ParseNode.cc

    rfa463f1 rc8dfcd3  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // ParseNode.cc -- 
     7// ParseNode.cc --
    88//
    99// Author           : Rodolfo G. Esteves
     
    1212// Last Modified On : Wed Aug 17 23:14:16 2016
    1313// Update Count     : 126
    14 // 
     14//
    1515
    1616#include "ParseNode.h"
     
    1919int ParseNode::indent_by = 4;
    2020
     21std::ostream & operator<<( std::ostream & out, const ParseNode * node ) {
     22  node->print( out );
     23  return out;
     24}
     25
    2126// Local Variables: //
    2227// tab-width: 4 //
  • src/Parser/ParseNode.h

    rfa463f1 rc8dfcd3  
    409409}
    410410
     411// in ParseNode.cc
     412std::ostream & operator<<( std::ostream & out, const ParseNode * node );
    411413
    412414#endif // PARSENODE_H
Note: See TracChangeset for help on using the changeset viewer.