vs 2015 编译cocos2dx 报错

VS 2015 compiling cocos2d-x 3.3 error “fatal error C1189: #error: Macro definition of snprintf conflicts with Standard Library function declaration”

原因:vs 2015里面已经自己定义了snpritf(),而cocos里面又重新定义了一遍,所以出现了冲突;

 

#ifdef snprintf
#error: Macro definition of snprintf conflicts with Standard Library function declaration”
#endif
 

解决:删除cocos2d 里 cocos2d\cocos\platform\win32\CCStdC-win32.h的代码

<p>
#if !defined(isnan)
    #define isnan   _isnan
#endif</p><p><strong>//#ifndef snprintf
//#define snprintf _snprintf
//#endif</strong></p><p>#endif // __MINGW32__</p>--------------------- 

作者:余不二
来源:CSDN
原文:https://blog.csdn.net/yu452148611/article/details/46636817

posted @ 2018-11-18 21:44  hanframe  阅读(549)  评论(0编辑  收藏  举报