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

Fixed a compiler error when building analytics unit tests for Android

This commit is contained in:
hogliux 2018-03-12 11:41:19 +00:00
parent c2a877cac8
commit cc062f59f2

View file

@ -216,7 +216,7 @@ struct ThreadedAnalyticsDestinationTests : public UnitTest
const std::deque<AnalyticsDestination::AnalyticsEvent>& b)
{
const auto numEntries = a.size();
expectEquals (b.size(), numEntries);
expectEquals ((int) b.size(), (int) numEntries);
for (size_t i = 0; i < numEntries; ++i)
{