summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJason Wray <jason@kulturny.com>2015-10-06 13:46:15 -0400
committerJason Wray <jason@kulturny.com>2015-10-06 13:55:08 -0400
commit394c1be038e799ac9dd072cfe81f718f8e4d3a5c (patch)
treef62bff68e6705d035ed7c97d91610aa4ec5e7a1d /test
parent453fd4c0b0ea6089b1f341870b4938dc92da63c8 (diff)
downloadqtlocation-mapboxgl-394c1be038e799ac9dd072cfe81f718f8e4d3a5c.tar.gz
[ios][tests] disable non-null warning
Diffstat (limited to 'test')
-rw-r--r--test/ios/LocationMocker/CLLocationManager+MockLocation.m1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ios/LocationMocker/CLLocationManager+MockLocation.m b/test/ios/LocationMocker/CLLocationManager+MockLocation.m
index 8937a5e0af..ad95e5219d 100644
--- a/test/ios/LocationMocker/CLLocationManager+MockLocation.m
+++ b/test/ios/LocationMocker/CLLocationManager+MockLocation.m
@@ -32,6 +32,7 @@
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.1 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
+ #pragma clang diagnostic ignored "-Wnonnull"
[self.delegate locationManager:self didUpdateToLocation:self.location fromLocation:nil];
#pragma clang diagnostic pop
});