BogaudioModules

BogaudioModules for VCV Rack
Log | Files | Refs | README | LICENSE

commit 0e33dac7f99f4982aa270cf43ee9bb17d2d12a29
parent 3161730284f91eeaa5f0da444c268a91b39cb24d
Author: Matt Demanett <matt@demanett.net>
Date:   Mon,  5 Mar 2018 01:04:32 -0500

Fix warning that shows up on linux (final does not imply override).

Diffstat:
Msrc/dsp/oscillator.hpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/dsp/oscillator.hpp b/src/dsp/oscillator.hpp @@ -70,7 +70,7 @@ struct Phasor : OscillatorGenerator { void setPhase(float radians); float nextFromPhasor(const Phasor& phasor, float offset = 0.0f); // offset is not radians, but local phase. void _updateDelta(); - virtual float _next() final; + virtual float _next() override final; virtual float _nextForPhase(float phase); static float radiansToPhase(float radians) { return radians / M_PI; }