Browse Source

Array: Add missing floating point equality warning suppression

v7.0.9
reuk 2 years ago
parent
commit
c93ac07202
No known key found for this signature in database GPG Key ID: FCB43929F012EE5C
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_core/containers/juce_Array.h

+ 1
- 1
modules/juce_core/containers/juce_Array.h View File

@@ -386,7 +386,7 @@ public:
auto endPtr = values.end();
for (; e != endPtr; ++e)
if (elementToLookFor == *e)
if (exactlyEqual (elementToLookFor, *e))
return static_cast<int> (e - values.begin());
return -1;


Loading…
Cancel
Save