package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
1.0 KiB
20 lines
1.0 KiB
diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h |
|
index 9374cdf..90f082a 100644 |
|
--- a/include/fast_float/float_common.h |
|
+++ b/include/fast_float/float_common.h |
|
@@ -11,12 +11,12 @@ |
|
|| defined(__amd64) || defined(__aarch64__) || defined(_M_ARM64) \ |
|
|| defined(__MINGW64__) \ |
|
|| defined(__s390x__) \ |
|
- || (defined(__ppc64__) || defined(__PPC64__) || defined(__ppc64le__) || defined(__PPC64LE__)) \ |
|
- || defined(__EMSCRIPTEN__)) |
|
+ || (defined(__ppc64__) || defined(__PPC64__) || defined(__ppc64le__) || defined(__PPC64LE__))) |
|
#define FASTFLOAT_64BIT |
|
#elif (defined(__i386) || defined(__i386__) || defined(_M_IX86) \ |
|
|| defined(__arm__) || defined(_M_ARM) \ |
|
- || defined(__MINGW32__)) |
|
+ || defined(__MINGW32__) \ |
|
+ || defined(__EMSCRIPTEN__)) |
|
#define FASTFLOAT_32BIT |
|
#else |
|
// Need to check incrementally, since SIZE_MAX is a size_t, avoid overflow.
|
|
|