summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2018-06-16 08:56:34 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2018-06-16 08:59:28 +0200
commit27ce655dd74b81d40a3a28e65e753985f506a387 (patch)
treea21edfe121f7a0d9e30798d5fc7cee70a3f5f5e3
parentefc232050e3b3841f3d6c33cbc8e04a8c009bc88 (diff)
Add missing override keywords.
-rw-r--r--pluginvst.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/pluginvst.h b/pluginvst.h
index 63bdefe..ecc9357 100644
--- a/pluginvst.h
+++ b/pluginvst.h
@@ -124,13 +124,13 @@ public:
PluginCategory getPluginCategory() override = 0;
//! Fill \e text with a string identifying the effect
- bool getEffectName(char* name);
+ bool getEffectName(char* name) override;
//! Fill \e text with a string identifying the vendor
- bool getVendorString(char* text);
+ bool getVendorString(char* text) override;
//! Fill \e text with a string identifying the product name
- bool getProductString(char* text);
+ bool getProductString(char* text) override;
//! Specify a category that fits the plug (#VstPlugCategory)
virtual VstPlugCategory getPlugCategory() override;
@@ -141,7 +141,7 @@ public:
std::vector<MidiEvent>& output_events,
const std::vector<const float*>& input_samples,
const std::vector<float*>& output_samples,
- std::size_t count) = 0;
+ std::size_t count) override = 0;
//
// GUI