summaryrefslogtreecommitdiff
path: root/src/common/common_funcs.h
diff options
context:
space:
mode:
authorGravatar bunnei2018-04-20 09:43:30 -0400
committerGravatar GitHub2018-04-20 09:43:30 -0400
commitb5c204ac6f1c309babf439664686af7807fd83ab (patch)
treec3a1344775db49885c8fb2b83d8ac861f664b20c /src/common/common_funcs.h
parentMerge pull request #363 from lioncash/array-size (diff)
parentcommon_funcs: Remove check for VS versions that we don't even support (diff)
downloadyuzu-b5c204ac6f1c309babf439664686af7807fd83ab.tar.gz
yuzu-b5c204ac6f1c309babf439664686af7807fd83ab.tar.xz
yuzu-b5c204ac6f1c309babf439664686af7807fd83ab.zip
Merge pull request #362 from lioncash/snprintf
common_funcs: Remove check for VS versions that we don't even support
Diffstat (limited to 'src/common/common_funcs.h')
-rw-r--r--src/common/common_funcs.h5
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) {
72 72
73#else // _MSC_VER 73#else // _MSC_VER
74 74
75#if (_MSC_VER < 1900)
76// Function Cross-Compatibility
77#define snprintf _snprintf
78#endif
79
80// Locale Cross-Compatibility 75// Locale Cross-Compatibility
81#define locale_t _locale_t 76#define locale_t _locale_t
82 77