Changes in src/Parser/ParseNode.cc [71bd8c6:59db689]
- File:
-
- 1 edited
-
src/Parser/ParseNode.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ParseNode.cc
r71bd8c6 r59db689 9 9 // Author : Rodolfo G. Esteves 10 10 // Created On : Sat May 16 13:26:29 2015 11 // Last Modified By : Rob Schluntz12 // Last Modified On : Wed Jul 08 14:46:45201513 // Update Count : 2 511 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Jun 6 20:17:58 2015 13 // Update Count : 23 14 14 // 15 15 … … 41 41 42 42 ParseNode *ParseNode::set_link( ParseNode *next_ ) { 43 ParseNode *follow; 44 43 45 if ( next_ == 0 ) return this; 44 46 45 get_last()->next = next_; 47 for ( follow = this; follow->next != 0; follow = follow->next ); 48 follow->next = next_; 46 49 47 50 return this;
Note:
See TracChangeset
for help on using the changeset viewer.