--- /dev/null
+Description: Fixed build error with IIR filter and SIMD registers
+Author: IOhannes m zmölnig
+Origin: upstream
+Bug: https://github.com/WeAreROLI/JUCE/issues/292
+Applied-Upstream: https://github.com/WeAreROLI/JUCE/commit/13d18e406c33724a9f8870c4602458fc6d94b750
+Last-Update: 2017-12-19
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- juce.orig/modules/juce_dsp/processors/juce_IIRFilter.h
++++ juce/modules/juce_dsp/processors/juce_IIRFilter.h
+@@ -88,7 +88,7 @@
+ Note that this clears the processing state, but the type of filter and\r
+ its coefficients aren't changed.\r
+ */\r
+- void reset() { reset ({}); }\r
++ void reset() { reset (SampleType {}); }\r
+ \r
+ /** Resets the filter's processing pipeline to a specific value.\r
+ @see reset\r