From 264ccf51912b2cebe80d6df1bde037932f02c7c7 Mon Sep 17 00:00:00 2001 From: hogliux Date: Mon, 31 Jul 2017 15:55:10 +0100 Subject: [PATCH] Fixed a compiler error when using the default constructor of dsp::IIR::Filter --- modules/juce_dsp/processors/juce_IIRFilter_Impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_dsp/processors/juce_IIRFilter_Impl.h b/modules/juce_dsp/processors/juce_IIRFilter_Impl.h index 55b3189087..29961d2e05 100644 --- a/modules/juce_dsp/processors/juce_IIRFilter_Impl.h +++ b/modules/juce_dsp/processors/juce_IIRFilter_Impl.h @@ -47,7 +47,7 @@ struct SnapToZeroHelper> { static void snap (SIMDRegiste //============================================================================== template Filter::Filter() - : coefficients (new Coefficients::NumericType> (Coefficients::NumericType>::passThrough)) + : coefficients (new Coefficients::NumericType> (1, 0, 1, 0)) { reset(); }