From 902fc61ef82084957271288d847d8c06a98f5acd Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 19 Apr 2018 22:28:54 -0400 Subject: common_funcs: Remove check for VS versions that we don't even support We don't support any VS versions that don't already have snprintf in the standard library implementation. --- src/common/common_funcs.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src') diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h index 6f0604958..24a325ba2 100644 --- a/src/common/common_funcs.h +++ b/src/common/common_funcs.h @@ -74,11 +74,6 @@ inline u64 _rotr64(u64 x, unsigned int shift) { #else // _MSC_VER -#if (_MSC_VER < 1900) -// Function Cross-Compatibility -#define snprintf _snprintf -#endif - // Locale Cross-Compatibility #define locale_t _locale_t -- cgit v1.2.3