summaryrefslogtreecommitdiffstats
path: root/ingen/LV2Features.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-12-25 12:18:33 -0500
committerDavid Robillard <d@drobilla.net>2017-12-25 12:18:33 -0500
commit9aaa4892720de74e165049e2be941629038a6951 (patch)
tree50677a9bfdff4af3cebcf3796b6a80ea299c570b /ingen/LV2Features.hpp
parentcdff3e0a5e2e3357f1aa260cc19ef196ef738c7a (diff)
downloadingen-9aaa4892720de74e165049e2be941629038a6951.tar.gz
ingen-9aaa4892720de74e165049e2be941629038a6951.tar.bz2
ingen-9aaa4892720de74e165049e2be941629038a6951.zip
Use override
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>();
}