From f893a125b98bbaaa126ef8cc86f1ff0c952f0dce Mon Sep 17 00:00:00 2001 From: Anthony Nicholls Date: Mon, 2 Oct 2023 15:15:38 +0100 Subject: [PATCH] SIMD: Add guard for string stream operator --- modules/juce_dsp/containers/juce_AudioBlock_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/juce_dsp/containers/juce_AudioBlock_test.cpp b/modules/juce_dsp/containers/juce_AudioBlock_test.cpp index bfd2f8aa48..4b091bf34b 100644 --- a/modules/juce_dsp/containers/juce_AudioBlock_test.cpp +++ b/modules/juce_dsp/containers/juce_AudioBlock_test.cpp @@ -28,8 +28,10 @@ namespace juce namespace dsp { +#if JUCE_USE_SIMD template String& operator<< (String& str, SIMDRegister) { return str; } +#endif template class AudioBlockUnitTests : public UnitTest