From abd9cdf95991c931ae8ddda409962eecb9d44f65 Mon Sep 17 00:00:00 2001 From: Jan Travnicek <Jan.Travnicek@fit.cvut.cz> Date: Thu, 20 Jul 2017 17:07:32 +0200 Subject: [PATCH] add missing overrides in RightRG --- alib2data/src/grammar/Regular/RightRG.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/alib2data/src/grammar/Regular/RightRG.h b/alib2data/src/grammar/Regular/RightRG.h index e52f1799a1..934f07c1ee 100644 --- a/alib2data/src/grammar/Regular/RightRG.h +++ b/alib2data/src/grammar/Regular/RightRG.h @@ -320,17 +320,17 @@ public: * * \returns actual relation between two by type same grammar instances */ - virtual int compare ( const RightRG & other ) const; + virtual int compare ( const RightRG & other ) const override; /** * @copydoc alib::CommonBase<ObjectBase>::operator >> ( std::ostream & ) */ - virtual void operator >>( std::ostream & os ) const; + virtual void operator >>( std::ostream & os ) const override; /** * @copydoc alib::CommonBase<ObjectBase>::operator std::string ( ) */ - virtual explicit operator std::string ( ) const; + virtual explicit operator std::string ( ) const override; /** * \brief The XML tag name of class. @@ -367,7 +367,7 @@ public: * * \param out sink for new xml tokens representing the grammar */ - void compose ( std::deque < sax::Token > & out ) const; + virtual void compose ( std::deque < sax::Token > & out ) const override; /** * Helper for composing rules of the grammar to a sequence of xml tokens. @@ -379,7 +379,7 @@ public: /** * @copydoc alib::GrammarBase::inc() */ - virtual alib::ObjectBase * inc ( ) &&; + virtual alib::ObjectBase * inc ( ) && override; /** * Type of normalized type. @@ -391,7 +391,7 @@ public: * * \returns new instance of the grammar with default template parameters or unmodified instance if the template parameters were already default ones */ - virtual GrammarBase * normalize ( ) && { + virtual GrammarBase * normalize ( ) && override { if ( typeid ( RightRG < > ) == typeid ( RightRG < SymbolType > ) ) return this; -- GitLab