std::snprintf fix for MinGW32 c++11

This commit is contained in:
Jacco 2016-01-25 11:39:36 +01:00
parent 2646ac5fa5
commit bc9b445fee

View File

@ -57,8 +57,10 @@
#elif defined(__ANDROID__) || defined(__QNXNTO__)
#define snprintf snprintf
#elif __cplusplus >= 201103L
#if !defined(__MINGW32__)
#define snprintf std::snprintf
#endif
#endif
#if defined(__BORLANDC__)
#include <float.h>