summaryrefslogtreecommitdiffstats
path: root/src/server/internals/Trigger.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/internals/Trigger.hpp')
-rw-r--r--src/server/internals/Trigger.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/internals/Trigger.hpp b/src/server/internals/Trigger.hpp
index ae661751..98d50f2c 100644
--- a/src/server/internals/Trigger.hpp
+++ b/src/server/internals/Trigger.hpp
@@ -48,12 +48,12 @@ public:
GraphImpl* parent,
SampleRate srate);
- void run(RunContext& context);
+ void run(RunContext& context) override;
bool note_on(RunContext& context, uint8_t note_num, uint8_t velocity, FrameTime time);
bool note_off(RunContext& context, uint8_t note_num, FrameTime time);
- void learn() { _learning = true; }
+ void learn() override { _learning = true; }
static InternalPlugin* internal_plugin(URIs& uris);