diff options
author | Lioncash <mathew1800@gmail.com> | 2018-04-19 22:28:54 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-04-19 22:28:56 -0400 |
commit | 902fc61ef82084957271288d847d8c06a98f5acd (patch) | |
tree | 241fc5da97840834d4ec4fe64bc0c4f4610ad355 /src/common/common_funcs.h | |
parent | 17ad56c1dce85e71d5ab8a87efd7d43d87cacd92 (diff) |
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.
Diffstat (limited to 'src/common/common_funcs.h')
-rw-r--r-- | src/common/common_funcs.h | 5 |
1 files changed, 0 insertions, 5 deletions
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 |