summaryrefslogtreecommitdiff
path: root/platform/ios/MGLCategoryLoader.m
blob: 13d82b19b2e07c5b0e92e9988a8b0fba3d6e4cd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#import "MGLCategoryLoader.h"

#import "NSBundle+MGLAdditions.h"
#import "NSProcessInfo+MGLAdditions.h"
#import "NSString+MGLAdditions.h"

// https://github.com/mapbox/mapbox-gl-native/issues/2966

@implementation MGLCategoryLoader

+ (void)loadCategories
{
    mgl_linkBundleCategory();
    mgl_linkProcessCategory();
    mgl_linkStringCategory();
}

@end