Kaydet (Commit) 81ad1147 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: 'MAC_OS_X_VERSION_MAX_ALLOWED' is not defined, evaluates to 0

(When compiling for iOS.)

Change-Id: I9f9f5b122c1bfac4ff670a4302fb10b6b82685ac
üst e3dad060
......@@ -41,7 +41,7 @@ void* osl_aligned_alloc( sal_Size align, sal_Size size )
void osl_aligned_free( void* p )
{
#if defined __APPLE__ && MAC_OS_X_VERSION_MAX_ALLOWED < 1060
#if defined MAC_OS_X_VERSION_MAX_ALLOWED && MAC_OS_X_VERSION_MAX_ALLOWED < 1060
free(((void**)p)[-1]);
#else
free(p);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment