aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common
diff options
context:
space:
mode:
authorGravatar Apology11 <apology11@gmail.com>2015-07-12 13:12:14 +0200
committerGravatar Apology11 <apology11@gmail.com>2015-07-12 13:12:14 +0200
commitaf18572491ba630e24f5c7dacf0d2d5a08929a6a (patch)
tree2159e768117b8fa8c1deba059a0ed7efd888cc08 /src/common
parentf4e1d8ea36fc3f8309234b8a4a8c9f659b171c80 (diff)
don´t define snprintf on Visual Studio 2015
Visual Studio 2015 defines this in stdio now
Diffstat (limited to 'src/common')
-rw-r--r--src/common/common_funcs.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h
index c4fb3d9c..59bd16db 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