From 9923a773266c5268288c0de1bb225216e650fcb7 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Thu, 19 Oct 2017 04:21:08 -0400 Subject: [PATCH] Use override in LFO --- src/LFO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LFO.cpp b/src/LFO.cpp index 9a6b2c3..c3f2248 100644 --- a/src/LFO.cpp +++ b/src/LFO.cpp @@ -181,7 +181,7 @@ struct LFO2 : Module { float lights[1] = {}; LFO2() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS) {} - void step(); + void step() override; };