Ignore:
Timestamp:
Jun 4, 2015, 11:35:13 AM (9 years ago)
Author:
Peter A. Buhr <pabuhr@…>
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, string, with_gc
Children:
9a8930f
Parents:
30651b0
Message:

enable AM_MAINTAINER_MODE, add operator ?{}, formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ParseNode.cc

    r30651b0 ra61fea9a  
    1010// Created On       : Sat May 16 13:26:29 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue May 19 16:48:30 2015
    13 // Update Count     : 3
     12// Last Modified On : Wed Jun  3 11:17:58 2015
     13// Update Count     : 4
    1414//
    1515
     
    5656}
    5757
    58 ParseNode *ParseNode::set_link(ParseNode *_next) {
     58ParseNode *ParseNode::set_link( ParseNode *_next ) {
    5959        ParseNode *follow;
    6060
     
    6767}
    6868
    69 const string ParseNode::get_name(void) const {
     69const string ParseNode::get_name( void ) const {
    7070        return name;
    7171}
    7272
    73 void ParseNode::print(std::ostream &os, int indent) const {}
     73void ParseNode::print( std::ostream &os, int indent ) const {}
    7474
    7575
     
    7878
    7979        if ( next ) {
    80         next->printList( os, indent );
     80                next->printList( os, indent );
    8181        }
    8282}
Note: See TracChangeset for help on using the changeset viewer.