summaryrefslogtreecommitdiffstats
path: root/ingen/LV2Features.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ingen/LV2Features.hpp')
-rw-r--r--ingen/LV2Features.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ingen/LV2Features.hpp b/ingen/LV2Features.hpp
index 91fd3822..f718b22f 100644
--- a/ingen/LV2Features.hpp
+++ b/ingen/LV2Features.hpp
@@ -55,9 +55,9 @@ protected:
public:
EmptyFeature(const char* uri) : _uri(uri) {}
- virtual const char* uri() const { return _uri; }
+ const char* uri() const override { return _uri; }
- virtual SPtr<LV2_Feature> feature(World* world, Node* block) {
+ SPtr<LV2_Feature> feature(World* world, Node* block) override {
return SPtr<LV2_Feature>();
}