summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLFeature.mm
diff options
context:
space:
mode:
authorJason Wray <jason@mapbox.com>2018-01-02 15:36:37 -0500
committerJason Wray <jason@mapbox.com>2018-01-02 19:36:31 -0500
commit637892cd6f0f8953b787b9d727bdf82ed3813c96 (patch)
tree20341a2b2908cec211b37ead7dab3b6cd2b5d170 /platform/darwin/src/MGLFeature.mm
parent1dd5e405c113bac4446b5b5175b92ce7ff7467bf (diff)
downloadqtlocation-mapboxgl-637892cd6f0f8953b787b9d727bdf82ed3813c96.tar.gz
[ios, macos] Move private categories into explicitly private headers
Instead of creating `MGLAdditions` categories/files for our own classes, this standardizes on the `Private` convention that we had been using elsewhere. This also fixes build errors where the `MGLAdditions` categories weren't importing their parents.
Diffstat (limited to 'platform/darwin/src/MGLFeature.mm')
-rw-r--r--platform/darwin/src/MGLFeature.mm6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/darwin/src/MGLFeature.mm b/platform/darwin/src/MGLFeature.mm
index 84f1a1ff25..033052bda8 100644
--- a/platform/darwin/src/MGLFeature.mm
+++ b/platform/darwin/src/MGLFeature.mm
@@ -7,11 +7,11 @@
#import "MGLShape_Private.h"
#import "MGLPointCollection_Private.h"
-#import "MGLPolyline+MGLAdditions.h"
-#import "MGLPolygon+MGLAdditions.h"
+#import "MGLPolyline_Private.h"
+#import "MGLPolygon_Private.h"
+
#import "NSDictionary+MGLAdditions.h"
#import "NSArray+MGLAdditions.h"
-
#import "NSExpression+MGLAdditions.h"
#import <mbgl/util/geometry.hpp>