axmol/cocos2dx/include
James Chen 387ea1899c issue #2404: Disabling warning of invoking deprecated methods in engine. Rename CCCallFuncND to __CCCallFuncND, and add deprecated typedef CCCallFuncND.
Only disable warning for CCActionInstant.cpp and CCMenuItem.cpp
#if defined(__GNUC__) && ((__GNUC__ >= 4) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)))
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#elif _MSC_VER >= 1400 //vs 2005 or higher
#pragma warning (push)
#pragma warning (disable: 4996)
#endif

#if defined(__GNUC__) && ((__GNUC__ >= 4) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)))
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
#elif _MSC_VER >= 1400 //vs 2005 or higher
#pragma warning (pop)
#endif
2013-07-25 15:05:56 +08:00
..
CCDeprecated.h issue #2404: Disabling warning of invoking deprecated methods in engine. Rename CCCallFuncND to __CCCallFuncND, and add deprecated typedef CCCallFuncND. 2013-07-25 15:05:56 +08:00
CCEventType.h issue #2129: Removing CC prefix for cocos2dx module. 2013-06-20 14:13:12 +08:00
CCProtocols.h issue #2378: More setter/Getter, removing CC_PROPERTY_XXX macros. 2013-07-23 18:26:26 +08:00
ccConfig.h closed #2393: fix conflicts 2013-07-12 18:04:32 +08:00
ccMacros.h More best practices fixes and other bug fixes 2013-07-23 15:20:22 -07:00
ccTypeInfo.h CCAssert -> CCASSERT 2013-07-19 22:01:27 -07:00
ccTypes.h issue #2404: Fixing a warning in ccTypes.h. 2013-07-25 13:45:41 +08:00
cocos2d.h issue #2412:fix merging conflict 2013-07-23 10:41:11 +08:00