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:
parent
c2a877cac8
commit
cc062f59f2
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue