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 e47ccd2 commit d714367Copy full SHA for d714367
2 files changed
deps/simdjson/simdjson.cpp
@@ -1,4 +1,4 @@
1
-/* auto-generated on 2024-08-01 09:31:50 -0400. Do not edit! */
+/* auto-generated on 2024-08-26 09:37:03 -0400. Do not edit! */
2
/* including simdjson.cpp: */
3
/* begin file simdjson.cpp */
4
#define SIMDJSON_SRC_SIMDJSON_CPP
@@ -332,6 +332,8 @@ double from_chars(const char *first, const char* end) noexcept;
332
#define SIMDJSON_ISALIGNED_N(ptr, n) (((uintptr_t)(ptr) & ((n)-1)) == 0)
333
334
#if SIMDJSON_REGULAR_VISUAL_STUDIO
335
+ // We could use [[deprecated]] but it requires C++14
336
+ #define simdjson_deprecated __declspec(deprecated)
337
338
#define simdjson_really_inline __forceinline
339
#define simdjson_never_inline __declspec(noinline)
@@ -370,6 +372,8 @@ double from_chars(const char *first, const char* end) noexcept;
370
372
#define SIMDJSON_POP_DISABLE_UNUSED_WARNINGS
371
373
374
#else // SIMDJSON_REGULAR_VISUAL_STUDIO
375
376
+ #define simdjson_deprecated __attribute__((deprecated))
377
378
#define simdjson_really_inline inline __attribute__((always_inline))
379
#define simdjson_never_inline inline __attribute__((noinline))
0 commit comments