We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6092b5 commit 978b4e0Copy full SHA for 978b4e0
1 file changed
endianness.h
@@ -14,11 +14,13 @@
14
defined(__ARMEL__) || \
15
defined(__THUMBEL__) || \
16
defined(__AARCH64EL__) || \
17
- defined(_MIPSEL) || defined(__MIPSEL) || defined(__MIPSEL__)
+ defined(_MIPSEL) || defined(__MIPSEL) || defined(__MIPSEL__) || \
18
+ defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || \
19
+ defined(_X86_) || defined(_IA64_)
20
#ifndef __LITTLE_ENDIAN__
21
#define __LITTLE_ENDIAN__
22
#endif
23
#else
24
#error "I don't know what architecture this is!"
25
-#endif
26
+#endif
0 commit comments