Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/DeclarationNode.cc

    r3b8e52c r13e3b50  
    1010// Created On       : Sat May 16 12:34:05 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Aug 17 11:08:56 2016
    13 // Update Count     : 180
     12// Last Modified On : Mon Aug 15 20:48:55 2016
     13// Update Count     : 178
    1414//
    1515
     
    2525#include "SynTree/Expression.h"
    2626
     27#include "Parser.h"
    2728#include "TypedefTable.h"
    2829extern TypedefTable typedefTable;
     
    780781
    781782DeclarationNode *DeclarationNode::appendList( DeclarationNode *node ) {
    782         return (DeclarationNode *)set_last( node );
     783        if ( node != 0 ) {
     784                set_last( node );
     785        } // if
     786        return this;
    783787}
    784788
Note: See TracChangeset for help on using the changeset viewer.