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.
1 parent a043b7d commit 00b3469Copy full SHA for 00b3469
Include/jsonifier/Core/Config.hpp
@@ -51,6 +51,12 @@
51
#define JSONIFIER_IS_ARM64 1
52
#endif
53
54
+#if defined(__has_builtin)
55
+ #define JSONIFIER_HAS_BUILTIN(x) __has_builtin(x)
56
+#else
57
+ #define JSONIFIER_HAS_BUILTIN(x) 0
58
+#endif
59
+
60
#if defined(macintosh) || defined(Macintosh) || (defined(__APPLE__) && defined(__MACH__)) || defined(TARGET_OS_MAC)
61
#define JSONIFIER_MAC 1
62
#elif defined(linux) || defined(__linux) || defined(__linux__) || defined(__gnu_linux__)
0 commit comments