mirror of https://github.com/axmolengine/axmol.git
fixed #1703: fixed compilation errors for BlackBerry.
This commit is contained in:
parent
f392fe2ea0
commit
ad61fa3e9b
|
@ -24,7 +24,7 @@ distribution.
|
||||||
#include "tinyxml2.h"
|
#include "tinyxml2.h"
|
||||||
|
|
||||||
#include <new> // yes, this one new style header, is in the Android SDK.
|
#include <new> // yes, this one new style header, is in the Android SDK.
|
||||||
# ifdef ANDROID_NDK
|
# if defined(ANDROID_NDK) || (CC_TARGET_PLATFORM == CC_PLATFORM_BLACKBERRY)
|
||||||
# include <stddef.h>
|
# include <stddef.h>
|
||||||
#else
|
#else
|
||||||
# include <cstddef>
|
# include <cstddef>
|
||||||
|
|
|
@ -26,7 +26,7 @@ distribution.
|
||||||
|
|
||||||
#include "platform/CCPlatformConfig.h"
|
#include "platform/CCPlatformConfig.h"
|
||||||
|
|
||||||
#if defined(ANDROID_NDK) || defined(__BORLANDC__)
|
#if defined(ANDROID_NDK) || defined(__BORLANDC__) || (CC_TARGET_PLATFORM == CC_PLATFORM_BLACKBERRY)
|
||||||
# include <ctype.h>
|
# include <ctype.h>
|
||||||
# include <limits.h>
|
# include <limits.h>
|
||||||
# include <stdio.h>
|
# include <stdio.h>
|
||||||
|
|
Loading…
Reference in New Issue