Fix problem with MSVC 19

"error C2039: '_snprintf': is not a member of 'std'"
This commit is contained in:
Linus Klöckner 2019-03-30 11:14:39 +01:00
parent 50425142fe
commit 65ecffba01

View File

@ -64,6 +64,6 @@ const nullptr_t nullptr = {};
#endif // _MSC_VER #endif // _MSC_VER
// A macro for snprintf support in Visual Studio // A macro for snprintf support in Visual Studio
#if _MSC_VER #if defined(_MSC_VER) && _MSC_VER < 1500
#define snprintf _snprintf #define snprintf _snprintf
#endif #endif