util/ByteOrder: indent the preprocessor directives

Improve readability.
This commit is contained in:
Max Kellermann 2013-11-21 23:03:28 +01:00
parent 727c622659
commit 37cf78ef45

View File

@ -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