Browse Source
Merge pull request #362 from lioncash/snprintf
common_funcs: Remove check for VS versions that we don't even support
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
5 deletions
-
src/common/common_funcs.h
|
|
|
@ -72,11 +72,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 |
|
|
|
|
|
|
|
|