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

Fixed a compiler error in MSVC in a recent commit when unit tests are enabled

This commit is contained in:
hogliux 2017-06-30 11:29:28 +01:00
parent 61044c8bda
commit 11e45e902a

View file

@ -51,7 +51,7 @@ struct HashMapTest : public UnitTest
auto value = valueOracle.nextInt();
bool contains = (groundTruth.find (key) != nullptr);
u.expectEquals (contains, hashMap.contains (key));
u.expectEquals ((int) contains, (int) hashMap.contains (key));
groundTruth.add (key, value);
hashMap.set (key, value);