Changeset d1b9d78 for src/Parser/ParseNode.cc
- Timestamp:
- Jul 13, 2016, 1:44:00 PM (9 years ago)
- 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:
- 9c791dd
- Parents:
- 8884112 (diff), ed9ecda (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/Parser/ParseNode.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ParseNode.cc
r8884112 rd1b9d78 10 10 // Created On : Sat May 16 13:26:29 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T hu Jun 30 21:13:12201613 // Update Count : 5 212 // Last Modified On : Tue Jul 12 17:19:57 2016 13 // Update Count : 53 14 14 // 15 15 … … 196 196 197 197 ParseNode *ParseNode::set_link( ParseNode *next_ ) { 198 if ( next_ == 0 ) return this; 199 get_last()->next = next_; 198 if ( next_ != 0 ) get_last()->next = next_; 200 199 return this; 201 200 }
Note:
See TracChangeset
for help on using the changeset viewer.