summaryrefslogtreecommitdiffstats
path: root/osdep/macosx_compat.h
diff options
context:
space:
mode:
Diffstat (limited to 'osdep/macosx_compat.h')
-rw-r--r--osdep/macosx_compat.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/osdep/macosx_compat.h b/osdep/macosx_compat.h
index c8099d7def..06b8cbd175 100644
--- a/osdep/macosx_compat.h
+++ b/osdep/macosx_compat.h
@@ -51,31 +51,4 @@ static const NSEventModifierFlags NSEventModifierFlagCommand = NSCommandKeyMask
static const NSEventModifierFlags NSEventModifierFlagOption = NSAlternateKeyMask;
#endif
-#if (MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_8)
-@interface NSArray (SubscriptingAdditions)
-- (id)objectAtIndexedSubscript:(NSUInteger)index;
-@end
-
-@interface NSMutableArray (SubscriptingAdditions)
-- (void)setObject: (id)object atIndexedSubscript:(NSUInteger)index;
-@end
-
-@interface NSDictionary (SubscriptingAdditions)
-- (id)objectForKeyedSubscript:(id)key;
-@end
-
-@interface NSMutableDictionary (SubscriptingAdditions)
-- (void)setObject: (id)object forKeyedSubscript:(id)key;
-@end
-
-#if __has_feature(objc_bool)
- #define YES __objc_yes
- #define NO __objc_no
-#else
- #define YES ((BOOL)1)
- #define NO ((BOOL)0)
-#endif
-
-#endif
-
#endif /* MPV_MACOSX_COMPAT */