summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLClockDirectionFormatter.m
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/src/MGLClockDirectionFormatter.m')
-rw-r--r--platform/darwin/src/MGLClockDirectionFormatter.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/darwin/src/MGLClockDirectionFormatter.m b/platform/darwin/src/MGLClockDirectionFormatter.m
index 62a0ea995d..922a1db9a2 100644
--- a/platform/darwin/src/MGLClockDirectionFormatter.m
+++ b/platform/darwin/src/MGLClockDirectionFormatter.m
@@ -1,6 +1,7 @@
#import "MGLClockDirectionFormatter.h"
#import "NSBundle+MGLAdditions.h"
+#import "MGLLoggingConfiguration_Private.h"
#define wrap(value, min, max) \
(fmod((fmod((value - min), (max - min)) + (max - min)), (max - min)) + min)
@@ -52,7 +53,7 @@
}
- (BOOL)getObjectValue:(out id __nullable * __nullable)obj forString:(NSString *)string errorDescription:(out NSString * __nullable * __nullable)error {
- NSAssert(NO, @"-getObjectValue:forString:errorDescription: has not been implemented");
+ MGLAssert(NO, @"-getObjectValue:forString:errorDescription: has not been implemented");
return NO;
}