Remove another compile-time ifdef
This commit is contained in:
parent
fbdc30e7bb
commit
9f27b9b56d
|
@ -524,11 +524,9 @@ static gfx_ctx_proc_t cocoagl_gfx_ctx_get_proc_address(const char *symbol_name)
|
||||||
{
|
{
|
||||||
return (gfx_ctx_proc_t)CFBundleGetFunctionPointerForName(CFBundleGetBundleWithIdentifier(GLFrameworkID),
|
return (gfx_ctx_proc_t)CFBundleGetFunctionPointerForName(CFBundleGetBundleWithIdentifier(GLFrameworkID),
|
||||||
(
|
(
|
||||||
#if MAC_OS_X_VERSION_10_7
|
|
||||||
#if __has_feature(objc_arc)
|
#if __has_feature(objc_arc)
|
||||||
__bridge
|
__bridge
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
CFStringRef)BOXSTRING(symbol_name)
|
CFStringRef)BOXSTRING(symbol_name)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue