summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)