Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ParseNode.h

    r1e30df7 r82ff4ed1  
    1010// Created On       : Sat May 16 13:28:16 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Feb  2 09:15:49 2022
    13 // Update Count     : 905
     12// Last Modified On : Tue Oct 18 16:22:15 2022
     13// Update Count     : 937
    1414//
    1515
     
    240240        static DeclarationNode * newEnumConstant( const std::string * name, ExpressionNode * constant );
    241241        static DeclarationNode * newEnumValueGeneric( const std::string * name, InitializerNode * init );
    242         static DeclarationNode * newEnumInLine( const std::string name );
    243242        static DeclarationNode * newName( const std::string * );
    244243        static DeclarationNode * newFromTypeGen( const std::string *, ExpressionNode * params );
     
    340339
    341340        bool inLine = false;
    342         bool enumInLine = false;
    343341        Type::FuncSpecifiers funcSpecs;
    344342        Type::StorageClasses storageClasses;
     
    465463                        errors.append( e );
    466464                } // try
    467                 cur = dynamic_cast< NodeType * >( cur->get_next() );
     465                const ParseNode * temp = (cur->get_next());
     466                cur = dynamic_cast< const NodeType * >( temp ); // should not return nullptr
     467                if ( ! cur && temp ) {                                                  // non-homogeneous nodes ?
     468                        SemanticError( temp->location, "internal error, non-homogeneous nodes founds in buildList processing." );
     469                } // if
    468470        } // while
    469471        if ( ! errors.isEmpty() ) {
Note: See TracChangeset for help on using the changeset viewer.