diff options
| author | 2021-01-24 13:30:26 +0100 | |
|---|---|---|
| committer | 2021-01-24 13:30:26 +0100 | |
| commit | 7d55efb32e845c910177c083e095956765fd5c17 (patch) | |
| tree | f3beaae96546f9cfabb25f3c456216acb89ca6ef /node | |
| parent | 228f38d2592dcce72274018a4ae9a745dc0f8005 (diff) | |
| download | OneRoll-7d55efb32e845c910177c083e095956765fd5c17.tar.gz OneRoll-7d55efb32e845c910177c083e095956765fd5c17.zip | |
Remove build warnings.
Diffstat (limited to 'node')
| -rw-r--r-- | node/groupnode.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/node/groupnode.h b/node/groupnode.h index 84ff2bb..d037080 100644 --- a/node/groupnode.h +++ b/node/groupnode.h @@ -48,10 +48,10 @@ class GroupNode : public ExecutionNode { public: GroupNode(bool complexOutput= false); - void run(ExecutionNode* previous); - virtual QString toString(bool withLabel) const; - virtual qint64 getPriority() const; - virtual ExecutionNode* getCopy() const; + void run(ExecutionNode* previous) override; + virtual QString toString(bool withLabel) const override; + virtual qint64 getPriority() const override; + virtual ExecutionNode* getCopy() const override; int getGroupValue() const; void setGroupValue(qint64 groupValue); |