From 7ec4cbdec025bad49e9bd34359d5cb5d486be220 Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Thu, 1 Mar 2018 14:54:34 +0000 Subject: [PATCH] Fixed a typo --- modules/juce_dsp/processors/juce_IIRFilter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_dsp/processors/juce_IIRFilter.h b/modules/juce_dsp/processors/juce_IIRFilter.h index e8e31230bd..ac991272b9 100644 --- a/modules/juce_dsp/processors/juce_IIRFilter.h +++ b/modules/juce_dsp/processors/juce_IIRFilter.h @@ -161,7 +161,7 @@ namespace IIR Coefficients (NumericType b0, NumericType b1, NumericType b2, NumericType a0, NumericType a1, NumericType a2); - Coefficients (NumericType b0, NumericType, NumericType b2, NumericType b3, + Coefficients (NumericType b0, NumericType b1, NumericType b2, NumericType b3, NumericType a0, NumericType a1, NumericType a2, NumericType a3); Coefficients (const Coefficients&) = default;