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

Fixed a compiler warning on iOS

This commit is contained in:
hogliux 2017-01-24 17:14:04 +00:00
parent 64f0027863
commit 859567ff0c

View file

@ -108,6 +108,7 @@ Array<AppInactivityCallback*> appBecomingInactiveCallbacks;
- (void) application: (UIApplication*) application handleEventsForBackgroundURLSession: (NSString*)identifier
completionHandler: (void (^)(void))completionHandler
{
ignoreUnused (application);
URL::DownloadTask::juce_iosURLSessionNotify (nsStringToJuce (identifier));
completionHandler();
}