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:
parent
61044c8bda
commit
11e45e902a
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue