cmake: Fix compilation for MSVC 2015

snprintf is now available in MSVC 2015!
This commit is contained in:
Ronald Kinard 2015-02-01 19:02:08 -06:00
parent ec79756c42
commit 8d3b948e1b
1 changed files with 2 additions and 2 deletions

View File

@ -100,9 +100,9 @@ typedef long ssize_t;
#if defined (_MSC_VER) || defined (__OS2__)
// Microsoft VisualC++
#ifdef _MSC_VER
#if (_MSC_VER <= 1800) // MSVC 2013 and back
#define snprintf _snprintf
#if (_MSC_VER <= 1200)
#if (_MSC_VER <= 1200) // MSVC 2012 and back
#define vsnprintf _vsnprintf
#endif
#endif