summaryrefslogtreecommitdiffstats
path: root/src/server/Worker.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/Worker.hpp')
-rw-r--r--src/server/Worker.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/Worker.hpp b/src/server/Worker.hpp
index 063570ca..a2bf4a7d 100644
--- a/src/server/Worker.hpp
+++ b/src/server/Worker.hpp
@@ -41,9 +41,9 @@ public:
struct Schedule : public LV2Features::Feature {
Schedule(bool sync) : synchronous(sync) {}
- const char* uri() const { return LV2_WORKER__schedule; }
+ const char* uri() const override { return LV2_WORKER__schedule; }
- SPtr<LV2_Feature> feature(World* world, Node* n);
+ SPtr<LV2_Feature> feature(World* world, Node* n) override;
const bool synchronous;
};