Simplify `MRB_ENDIAN_BIG` macro definition; ref #4190

`cpp` does not raise error on undefined macro access in condition.
parent 445c64d0
......@@ -60,7 +60,7 @@
/* define on big endian machines; used by MRB_NAN_BOXING, etc. */
#ifndef MRB_ENDIAN_BIG
# if defined(BYTE_ORDER) && defined(BIG_ENDIAN) && BYTE_ORDER == BIG_ENDIAN
# if BYTE_ORDER == BIG_ENDIAN
# define MRB_ENDIAN_BIG
# endif
#endif
......
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