We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0d4fc66 + 97f47d1 commit 3547fa1Copy full SHA for 3547fa1
ext/json/ext/vendor/jeaiii-ltoa.h
@@ -35,11 +35,13 @@ SOFTWARE.
35
typedef uint_fast32_t u32_t;
36
typedef uint_fast64_t u64_t;
37
38
+#if defined __clang__
39
#pragma clang diagnostic push
40
#pragma clang diagnostic ignored "-Wshorten-64-to-32"
-
41
+#elif defined __GNUC__
42
#pragma GCC diagnostic push
43
#pragma GCC diagnostic ignored "-Wmissing-braces"
44
+#endif
45
46
#define u32(x) ((u32_t)(x))
47
#define u64(x) ((u64_t)(x))
@@ -270,8 +272,10 @@ jeaiii_ultoa(char *b, u64_t n)
270
272
#undef u64
271
273
#undef COPY
274
275
276
#pragma clang diagnostic pop
277
278
#pragma GCC diagnostic pop
279
280
281
#endif // JEAIII_TO_TEXT_H_
0 commit comments