diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/system/ByteOrder.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/system/ByteOrder.hxx b/src/system/ByteOrder.hxx index 622003254..de8991bdb 100644 --- a/src/system/ByteOrder.hxx +++ b/src/system/ByteOrder.hxx @@ -33,11 +33,11 @@ #include <stdint.h> #if defined(__i386__) || defined(__x86_64__) || defined(__ARMEL__) -#define IS_LITTLE_ENDIAN true -#define IS_BIG_ENDIAN false +# define IS_LITTLE_ENDIAN true +# define IS_BIG_ENDIAN false #else -#define IS_LITTLE_ENDIAN false -#define IS_BIG_ENDIAN true +# define IS_LITTLE_ENDIAN false +# define IS_BIG_ENDIAN true #endif static inline constexpr bool |