Skip to content

Commit 00b3469

Browse files
committed
Testing new int-serialization logic.
1 parent a043b7d commit 00b3469

File tree

2 files changed

+453
-391
lines changed

2 files changed

+453
-391
lines changed

Include/jsonifier/Core/Config.hpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@
5151
#define JSONIFIER_IS_ARM64 1
5252
#endif
5353

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+
5460
#if defined(macintosh) || defined(Macintosh) || (defined(__APPLE__) && defined(__MACH__)) || defined(TARGET_OS_MAC)
5561
#define JSONIFIER_MAC 1
5662
#elif defined(linux) || defined(__linux) || defined(__linux__) || defined(__gnu_linux__)

0 commit comments

Comments
 (0)