util/ByteOrder: indent the preprocessor directives
Improve readability.
This commit is contained in:
parent
727c622659
commit
37cf78ef45
@ -33,11 +33,11 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#if defined(__i386__) || defined(__x86_64__) || defined(__ARMEL__)
|
#if defined(__i386__) || defined(__x86_64__) || defined(__ARMEL__)
|
||||||
#define IS_LITTLE_ENDIAN true
|
# define IS_LITTLE_ENDIAN true
|
||||||
#define IS_BIG_ENDIAN false
|
# define IS_BIG_ENDIAN false
|
||||||
#else
|
#else
|
||||||
#define IS_LITTLE_ENDIAN false
|
# define IS_LITTLE_ENDIAN false
|
||||||
#define IS_BIG_ENDIAN true
|
# define IS_BIG_ENDIAN true
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static inline constexpr bool
|
static inline constexpr bool
|
||||||
|
Loading…
Reference in New Issue
Block a user