This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Array: Add missing floating point equality warning suppression
v7.0.9
reuk
2 years ago
parent
d30f51ff00
commit
c93ac07202
No known key found for this signature in database
GPG Key ID:
FCB43929F012EE5C
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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 (e
lementToLookFor == *e
)
if (e
xactlyEqual (elementToLookFor, *e)
)
return static_cast<int> (e - values.begin());
return -1;
Write
Preview
Loading…
Cancel
Save