diff --git a/modules/juce_audio_basics/buffers/juce_FloatVectorOperations.cpp b/modules/juce_audio_basics/buffers/juce_FloatVectorOperations.cpp index d27656526a..fad3a9ebe0 100644 --- a/modules/juce_audio_basics/buffers/juce_FloatVectorOperations.cpp +++ b/modules/juce_audio_basics/buffers/juce_FloatVectorOperations.cpp @@ -176,7 +176,7 @@ namespace FloatVectorHelpers { typedef float Type; typedef float32x4_t ParallelType; - typedef uint32x4 IntegerType; + typedef uint32x4_t IntegerType; enum { numParallel = 4 }; static forcedinline IntegerType toint (ParallelType v) noexcept { union { ParallelType f; IntegerType i; } u; u.f = v; return u.i; }