Changes in src/Parser/DeclarationNode.cc [d1625f8:1d4580a]
- File:
-
- 1 edited
-
src/Parser/DeclarationNode.cc (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/DeclarationNode.cc
rd1625f8 r1d4580a 10 10 // Created On : Sat May 16 12:34:05 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Aug 9 08:39:20201613 // Update Count : 1 6912 // Last Modified On : Sat Aug 13 18:56:58 2016 13 // Update Count : 171 14 14 // 15 15 … … 470 470 471 471 // there may be typedefs chained onto the type 472 if ( o->get_ link() ) {473 set_l ink( o->get_link()->clone() );472 if ( o->get_next() ) { 473 set_last( o->get_next()->clone() ); 474 474 } // if 475 475 } // if … … 757 757 DeclarationNode *DeclarationNode::appendList( DeclarationNode *node ) { 758 758 if ( node != 0 ) { 759 set_l ink( node );759 set_last( node ); 760 760 } // if 761 761 return this; … … 794 794 errors.append( e ); 795 795 } // try 796 cur = dynamic_cast<DeclarationNode *>( cur->get_ link() );796 cur = dynamic_cast<DeclarationNode *>( cur->get_next() ); 797 797 } // while 798 798 if ( ! errors.isEmpty() ) { … … 831 831 errors.append( e ); 832 832 } // try 833 cur = dynamic_cast< DeclarationNode *>( cur->get_ link() );833 cur = dynamic_cast< DeclarationNode *>( cur->get_next() ); 834 834 } // while 835 835 if ( ! errors.isEmpty() ) { … … 848 848 errors.append( e ); 849 849 } // try 850 cur = dynamic_cast< DeclarationNode *>( cur->get_ link() );850 cur = dynamic_cast< DeclarationNode *>( cur->get_next() ); 851 851 } // while 852 852 if ( ! errors.isEmpty() ) {
Note:
See TracChangeset
for help on using the changeset viewer.