Changes in src/Parser/ParseNode.cc [d1625f8:1d4580a]
- File:
-
- 1 edited
-
src/Parser/ParseNode.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ParseNode.cc
rd1625f8 r1d4580a 10 10 // Created On : Sat May 16 13:26:29 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : S un Aug 7 23:32:47201613 // Update Count : 9 412 // Last Modified On : Sat Aug 13 18:55:35 2016 13 // Update Count : 98 14 14 // 15 15 … … 31 31 ParseNode *current = this; 32 32 33 while ( current->get_link() != 0 ) 34 current = current->get_link(); 35 33 while ( current->get_next() != 0 ) 34 current = current->get_next(); 36 35 return current; 37 36 } 38 37 39 ParseNode *ParseNode::set_l ink( ParseNode *next_ ) {38 ParseNode *ParseNode::set_last( ParseNode *next_ ) { 40 39 if ( next_ != 0 ) get_last()->next = next_; 41 40 return this; … … 54 53 55 54 ParseNode &ParseNode::operator,( ParseNode &p ) { 56 set_link( &p ); 57 55 set_last( &p ); 58 56 return *this; 59 57 }
Note:
See TracChangeset
for help on using the changeset viewer.