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

Added a ScopedNoDenormal class to temporarily disable denormals

This commit is contained in:
hogliux 2017-09-12 10:46:36 +01:00
parent 71d10e750a
commit e2c8e30d72
10 changed files with 73 additions and 5 deletions

View file

@ -444,7 +444,7 @@ public:
auto numStages = coefficientsUp.size();
for (auto n = 0; n < numStages; n++)
JUCE_SNAP_TO_ZERO (lv1[n]);
util::snapToZero (lv1[n]);
}
}
else
@ -455,7 +455,7 @@ public:
auto numStages = coefficientsDown.size();
for (auto n = 0; n < numStages; n++)
JUCE_SNAP_TO_ZERO (lv1[n]);
util::snapToZero (lv1[n]);
}
}
}