diff options
author | bunnei <bunneidev@gmail.com> | 2018-04-20 15:43:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-20 15:43:30 +0200 |
commit | b5c204ac6f1c309babf439664686af7807fd83ab (patch) | |
tree | c3a1344775db49885c8fb2b83d8ac861f664b20c /src | |
parent | Merge pull request #363 from lioncash/array-size (diff) | |
parent | common_funcs: Remove check for VS versions that we don't even support (diff) | |
download | yuzu-b5c204ac6f1c309babf439664686af7807fd83ab.tar yuzu-b5c204ac6f1c309babf439664686af7807fd83ab.tar.gz yuzu-b5c204ac6f1c309babf439664686af7807fd83ab.tar.bz2 yuzu-b5c204ac6f1c309babf439664686af7807fd83ab.tar.lz yuzu-b5c204ac6f1c309babf439664686af7807fd83ab.tar.xz yuzu-b5c204ac6f1c309babf439664686af7807fd83ab.tar.zst yuzu-b5c204ac6f1c309babf439664686af7807fd83ab.zip |
Diffstat (limited to 'src')
-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 19a33cb57..7cf7b7997 100644 --- a/src/common/common_funcs.h +++ b/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 |