Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ParseNode.h

    r62e5546 rfaddbd8  
    109109        ExpressionNode * set_extension( bool exten ) { extension = exten; return this; }
    110110
    111         virtual void print( std::ostream &os, int indent = 0 ) const override {}
     111        void print( std::ostream &os, int indent = 0 ) const {}
    112112        void printOneLine( std::ostream &os, int indent = 0 ) const {}
    113113
     
    187187//##############################################################################
    188188
    189 struct TypeData;
     189class TypeData;
    190190
    191191class DeclarationNode : public ParseNode {
     
    271271        }
    272272
    273         virtual void print( std::ostream &os, int indent = 0 ) const override;
    274         virtual void printList( std::ostream &os, int indent = 0 ) const override;
     273        void print( std::ostream &os, int indent = 0 ) const;
     274        void printList( std::ostream &os, int indent = 0 ) const;
    275275
    276276        Declaration * build() const;
     
    345345        virtual StatementNode * append_last_case( StatementNode * );
    346346
    347         virtual void print( std::ostream &os, int indent = 0 ) const override {}
    348         virtual void printList( std::ostream &os, int indent = 0 ) const override {}
     347        virtual void print( std::ostream &os, int indent = 0 ) {}
     348        virtual void printList( std::ostream &os, int indent = 0 ) {}
    349349  private:
    350350        std::unique_ptr<Statement> stmt;
Note: See TracChangeset for help on using the changeset viewer.