summaryrefslogtreecommitdiffstats
path: root/src/xmlpatterns/data/qboolean_p.h
diff options
context:
space:
mode:
authorAlexander Volkov <a.volkov@rusbitech.ru>2017-11-28 11:42:05 +0300
committerAlexander Volkov <a.volkov@rusbitech.ru>2019-09-02 16:20:28 +0300
commit3101514787f7f3a451514b2ef3fc6e7bcfe1f0ce (patch)
tree9c72b4942b123ab284884dd10c1998a306b94fc9 /src/xmlpatterns/data/qboolean_p.h
parentff5d1f797f0131d395f8d092cd69dfebf9f7dc15 (diff)
data: Add missing override and remove redundant virtual
Change-Id: Ic114d4c1243f4c6f10cbf6ece408e2f7586e17fc Reviewed-by: Frederik Gladhorn <frederik.gladhorn@qt.io>
Diffstat (limited to 'src/xmlpatterns/data/qboolean_p.h')
-rw-r--r--src/xmlpatterns/data/qboolean_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xmlpatterns/data/qboolean_p.h b/src/xmlpatterns/data/qboolean_p.h
index 1bcd0754..0aa17665 100644
--- a/src/xmlpatterns/data/qboolean_p.h
+++ b/src/xmlpatterns/data/qboolean_p.h
@@ -80,7 +80,7 @@ namespace QPatternist
static bool evaluateEBV(const Item &item,
const QExplicitlySharedDataPointer<DynamicContext> &context);
- virtual QString stringValue() const;
+ QString stringValue() const override;
/**
* @returns a Boolean object instantiating @p value. Use True() or False()
@@ -98,9 +98,9 @@ namespace QPatternist
* Get the Effective %Boolean Value of this boolean value. For <tt>xs:boolean</tt>, this
* is simply the value.
*/
- virtual bool evaluateEBV(const QExplicitlySharedDataPointer<DynamicContext> &) const;
+ bool evaluateEBV(const QExplicitlySharedDataPointer<DynamicContext> &) const override;
- virtual ItemType::Ptr type() const;
+ ItemType::Ptr type() const override;
inline bool value() const
{