1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed a problem with 64-bit FloatVectorOperations min/max range.

This commit is contained in:
jules 2014-05-27 11:42:11 +01:00
parent 426f5a7174
commit a6671bbae0

View file

@ -345,7 +345,7 @@ namespace FloatVectorHelpers
Range<Type> result (Mode::min (mn),
Mode::max (mx));
num &= 3;
num &= (Mode::numParallel - 1);
src += Mode::numParallel;
for (int i = 0; i < num; ++i)