diff options
author | Apology11 <apology11@gmail.com> | 2015-07-12 13:12:14 +0200 |
---|---|---|
committer | Apology11 <apology11@gmail.com> | 2015-07-12 13:12:14 +0200 |
commit | af18572491ba630e24f5c7dacf0d2d5a08929a6a (patch) | |
tree | 2159e768117b8fa8c1deba059a0ed7efd888cc08 /src/common/common_funcs.h | |
parent | f4e1d8ea36fc3f8309234b8a4a8c9f659b171c80 (diff) |
don´t define snprintf on Visual Studio 2015
Visual Studio 2015 defines this in stdio now
Diffstat (limited to 'src/common/common_funcs.h')
-rw-r--r-- | src/common/common_funcs.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h index c4fb3d9ccb..59bd16dbfe 100644 --- a/src/common/common_funcs.h +++ b/src/common/common_funcs.h @@ -69,8 +69,10 @@ inline u64 _rotr64(u64 x, unsigned int shift){ } #else // _MSC_VER - // Function Cross-Compatibility - #define snprintf _snprintf + #if (_MSC_VER < 1900) + // Function Cross-Compatibility + #define snprintf _snprintf + #endif // Locale Cross-Compatibility #define locale_t _locale_t |