summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2016-12-10 11:39:05 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2016-12-10 11:39:05 +0100
commit0bb248493c2ecb9963907e99716e61a4c5318711 (patch)
tree60c4407bca1006121ccdbb6a95a2eb026546e3fa
parentce626837d8b2a15cb898a1e09ae83075ce6ae5c3 (diff)
Add missing overrides.
-rw-r--r--pluginlv2.h6
1 files 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<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;
//
// 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)