1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

SIMD: Add guard for string stream operator

This commit is contained in:
Anthony Nicholls 2023-10-02 15:15:38 +01:00
parent 65f55e17ac
commit f893a125b9

View file

@ -28,8 +28,10 @@ namespace juce
namespace dsp
{
#if JUCE_USE_SIMD
template <typename SampleType>
String& operator<< (String& str, SIMDRegister<SampleType>) { return str; }
#endif
template <typename SampleType>
class AudioBlockUnitTests : public UnitTest