std::snprintf fix for MinGW32 c++11

This commit is contained in:
Jacco 2016-01-25 11:38:49 +01:00
parent 9234cbbc90
commit 2646ac5fa5

View File

@ -30,8 +30,10 @@
#elif defined(__ANDROID__) || defined(__QNXNTO__)
#define snprintf snprintf
#elif __cplusplus >= 201103L
#if !defined(__MINGW32__)
#define snprintf std::snprintf
#endif
#endif
#if defined(__QNXNTO__)
#define sscanf std::sscanf