diff --git a/modules/juce_core/containers/juce_HashMap_test.cpp b/modules/juce_core/containers/juce_HashMap_test.cpp index 45c006a318..9baa956a21 100644 --- a/modules/juce_core/containers/juce_HashMap_test.cpp +++ b/modules/juce_core/containers/juce_HashMap_test.cpp @@ -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);