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

Made a few minor tweaks to reduce the number of pedantic -Wfloat-equals warnings

This commit is contained in:
jules 2017-04-21 15:09:35 +01:00
parent 6bb3d9b1db
commit bf94ab0e4c
26 changed files with 411 additions and 432 deletions

View file

@ -132,7 +132,7 @@ void ColourGradient::setColour (int index, Colour newColour) noexcept
Colour ColourGradient::getColourAtPosition (const double position) const noexcept
{
jassert (colours.getReference(0).position == 0); // the first colour specified has to go at position 0
jassert (colours.getReference(0).position == 0.0); // the first colour specified has to go at position 0
if (position <= 0 || colours.size() <= 1)
return colours.getReference(0).colour;
@ -157,7 +157,7 @@ void ColourGradient::createLookupTable (PixelARGB* const lookupTable, const int
JUCE_COLOURGRADIENT_CHECK_COORDS_INITIALISED // Trying to use this object without setting its coordinates?
jassert (colours.size() >= 2);
jassert (numEntries > 0);
jassert (colours.getReference(0).position == 0); // The first colour specified has to go at position 0
jassert (colours.getReference(0).position == 0.0); // The first colour specified has to go at position 0
PixelARGB pix1 (colours.getReference (0).colour.getPixelARGB());
int index = 0;