From 27ce655dd74b81d40a3a28e65e753985f506a387 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sat, 16 Jun 2018 08:56:34 +0200 Subject: Add missing override keywords. --- pluginvst.h | 8 ++++---- 1 file 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& output_events, const std::vector& input_samples, const std::vector& output_samples, - std::size_t count) = 0; + std::size_t count) override = 0; // // GUI -- cgit v1.2.3