diff options
author | tgsm <thomas.gresham@hotmail.com> | 2019-02-18 21:24:53 -0500 |
---|---|---|
committer | fearlessTobi <thm.frey@gmail.com> | 2019-02-24 15:24:06 +0100 |
commit | 030814b1cb330a5bee2cceeac2734462c0397353 (patch) | |
tree | af24a15aec00723ff524944bca3fd3beb3440b62 /src/common/swap.h | |
parent | 90c780e6f3f035090ebffae2866f428e76801429 (diff) |
Remove GCC version checks
Citra can't be compiled using GCC <7 because of required C++17 support, so these version checks don't need to exist anymore.
Diffstat (limited to 'src/common/swap.h')
-rw-r--r-- | src/common/swap.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/swap.h b/src/common/swap.h index 32af0b6ac..0e219747f 100644 --- a/src/common/swap.h +++ b/src/common/swap.h @@ -28,8 +28,8 @@ #include <cstring> #include "common/common_types.h" -// GCC 4.6+ -#if __GNUC__ >= 5 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6) +// GCC +#ifdef __GNUC__ #if __BYTE_ORDER__ && (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__) && !defined(COMMON_LITTLE_ENDIAN) #define COMMON_LITTLE_ENDIAN 1 @@ -38,7 +38,7 @@ #endif // LLVM/clang -#elif __clang__ +#elif defined(__clang__) #if __LITTLE_ENDIAN__ && !defined(COMMON_LITTLE_ENDIAN) #define COMMON_LITTLE_ENDIAN 1 |