Commit 37cf78ef authored by Max Kellermann's avatar Max Kellermann

util/ByteOrder: indent the preprocessor directives

Improve readability.
parent 727c6226
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment