mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-04 17:56:13 -04:00
Fix problem with MSVC 19
"error C2039: '_snprintf': is not a member of 'std'"
This commit is contained in:
parent
50425142fe
commit
65ecffba01
@ -64,6 +64,6 @@ const nullptr_t nullptr = {};
|
||||
#endif // _MSC_VER
|
||||
|
||||
// A macro for snprintf support in Visual Studio
|
||||
#if _MSC_VER
|
||||
#if defined(_MSC_VER) && _MSC_VER < 1500
|
||||
#define snprintf _snprintf
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user