summaryrefslogtreecommitdiff
path: root/src/xmlpatterns/functions/qtracefn_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlpatterns/functions/qtracefn_p.h')
-rw-r--r--src/xmlpatterns/functions/qtracefn_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xmlpatterns/functions/qtracefn_p.h b/src/xmlpatterns/functions/qtracefn_p.h
index 2e5a31d..b423402 100644
--- a/src/xmlpatterns/functions/qtracefn_p.h
+++ b/src/xmlpatterns/functions/qtracefn_p.h
@@ -64,8 +64,8 @@ namespace QPatternist
class TraceFN : public FunctionCall
{
public:
- virtual Item evaluateSingleton(const DynamicContext::Ptr &context) const;
- virtual Item::Iterator::Ptr evaluateSequence(const DynamicContext::Ptr &context) const;
+ Item evaluateSingleton(const DynamicContext::Ptr &context) const override;
+ Item::Iterator::Ptr evaluateSequence(const DynamicContext::Ptr &context) const override;
/**
* Formally speaking, the type inference is:
@@ -79,7 +79,7 @@ statEnv |- (FN-URI,"trace")(Type) : prime(Type) * quantifier(Type)
* an example of where the type inference is used
* @returns the static type of the function's first argument.
*/
- virtual SequenceType::Ptr staticType() const;
+ SequenceType::Ptr staticType() const override;
};
}