From 0bb248493c2ecb9963907e99716e61a4c5318711 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sat, 10 Dec 2016 11:39:05 +0100 Subject: Add missing overrides. --- pluginlv2.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pluginlv2.h b/pluginlv2.h index ee80f7a..8a3e13e 100644 --- a/pluginlv2.h +++ b/pluginlv2.h @@ -129,14 +129,14 @@ 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; // // Inline GUI (optional) // //! Return true if a GUI implementation is to be used. - virtual bool hasInlineGUI() + virtual bool hasInlineGUI() override { return false; } @@ -148,7 +148,7 @@ public: //! \param context The render context filled an maintained by the plugin. virtual void onInlineRedraw(std::size_t width, std::size_t max_height, - InlineDrawContext& context) {} + InlineDrawContext& context) override {} // // GUI (optional) -- cgit v1.2.3