fixed #1703: fixed compilation errors for BlackBerry.

This commit is contained in:
James Chen 2013-02-16 11:05:30 +08:00
parent f392fe2ea0
commit ad61fa3e9b
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ distribution.
#include "tinyxml2.h"
#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>
#else
# include <cstddef>

View File

@ -26,7 +26,7 @@ distribution.
#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 <limits.h>
# include <stdio.h>