标签:重新定义 with fatal form http 3.3 detail mingw csdn
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
标签:重新定义 with fatal form http 3.3 detail mingw csdn
原文地址:https://www.cnblogs.com/hanframe/p/9979704.html