From 9e411ff323d96829de9d586859823c8b902e052d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Thu, 5 Oct 2023 00:44:52 +0200 Subject: [PATCH] Add missing Q_UNUSED --- src/effects/backends/builtin/glitcheffect.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/effects/backends/builtin/glitcheffect.cpp b/src/effects/backends/builtin/glitcheffect.cpp index 6f195e71049..90025793207 100644 --- a/src/effects/backends/builtin/glitcheffect.cpp +++ b/src/effects/backends/builtin/glitcheffect.cpp @@ -74,6 +74,8 @@ void GlitchEffect::processChannel( const mixxx::EngineParameters& engineParameters, const EffectEnableState enableState, const GroupFeatureState& groupFeatures) { + Q_UNUSED(enableState); + // The minimum of the parameter is zero so the exact center of the knob is 1 beat. double period = m_pDelayParameter->value();