summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Rex <julian.rex@mapbox.com>2019-09-07 00:14:53 -0400
committerJulian Rex <julian.rex@mapbox.com>2019-09-07 00:15:38 -0400
commita7fb5af451334556c3883562d7924e560118d831 (patch)
tree900f762fb05b1dbd87af024b29eb3f26eb82d567
parentdae3ecef86999d9d32c7038e7d674b9063025a16 (diff)
downloadqtlocation-mapboxgl-a7fb5af451334556c3883562d7924e560118d831.tar.gz
Change nullability for property
-rw-r--r--platform/darwin/src/MGLRasterTileSource_Private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/darwin/src/MGLRasterTileSource_Private.h b/platform/darwin/src/MGLRasterTileSource_Private.h
index 128dcb447d..8502b811e2 100644
--- a/platform/darwin/src/MGLRasterTileSource_Private.h
+++ b/platform/darwin/src/MGLRasterTileSource_Private.h
@@ -12,7 +12,7 @@ NS_ASSUME_NONNULL_BEGIN
@interface MGLRasterTileSource (Private)
-@property (nonatomic, readonly) mbgl::style::RasterSource *rawSource;
+@property (nonatomic, readonly, nullable) mbgl::style::RasterSource *rawSource;
- (std::unique_ptr<mbgl::style::RasterSource>)pendingSourceWithIdentifier:(NSString *)identifier configurationURL:(NSURL *)configurationURL tileSize:(CGFloat)tileSize;