1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-09 04:30:09 +00:00

Fixed typo

This commit is contained in:
hogliux 2015-04-07 18:03:59 +01:00
parent 7930bd92f2
commit 7a370a9019

View file

@ -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; }