Ignore:
Timestamp:
Jul 12, 2016, 6:34:10 PM (8 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, 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:
e4d3ceb
Parents:
6e4b913
Message:

changes for switch and choose statements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ParseNode.cc

    r6e4b913 r4e06c1e  
    1010// Created On       : Sat May 16 13:26:29 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Jun 30 21:13:12 2016
    13 // Update Count     : 52
     12// Last Modified On : Tue Jul 12 17:19:57 2016
     13// Update Count     : 53
    1414//
    1515
     
    196196
    197197ParseNode *ParseNode::set_link( ParseNode *next_ ) {
    198         if ( next_ == 0 ) return this;
    199         get_last()->next = next_;
     198        if ( next_ != 0 ) get_last()->next = next_;
    200199        return this;
    201200}
Note: See TracChangeset for help on using the changeset viewer.