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:
parent
426f5a7174
commit
a6671bbae0
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue