1
- /* auto-generated on 2024-05-30 10:52:38 -0400. Do not edit! */
1
+ /* auto-generated on 2024-06-11 14:08:20 -0400. Do not edit! */
2
2
/* including simdjson.h: */
3
3
/* begin file simdjson.h */
4
4
#ifndef SIMDJSON_H
104
104
#include <strings.h>
105
105
#endif
106
106
107
+ // We are using size_t without namespace std:: throughout the project
108
+ using std::size_t;
109
+
107
110
#ifdef _MSC_VER
108
111
#define SIMDJSON_VISUAL_STUDIO 1
109
112
/**
@@ -547,13 +550,13 @@ SIMDJSON_PUSH_DISABLE_ALL_WARNINGS
547
550
// Distributed under the Boost Software License, Version 1.0.
548
551
// (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
549
552
550
- // #pragma once // We remove #pragma once here as it generates a warning in some cases. We rely on the include guard.
553
+ #pragma once
551
554
552
555
#ifndef NONSTD_SV_LITE_H_INCLUDED
553
556
#define NONSTD_SV_LITE_H_INCLUDED
554
557
555
558
#define string_view_lite_MAJOR 1
556
- #define string_view_lite_MINOR 7
559
+ #define string_view_lite_MINOR 8
557
560
#define string_view_lite_PATCH 0
558
561
559
562
#define string_view_lite_VERSION nssv_STRINGIFY(string_view_lite_MAJOR) "." nssv_STRINGIFY(string_view_lite_MINOR) "." nssv_STRINGIFY(string_view_lite_PATCH)
@@ -675,6 +678,8 @@ SIMDJSON_PUSH_DISABLE_ALL_WARNINGS
675
678
676
679
#if nssv_CONFIG_CONVERSION_STD_STRING_FREE_FUNCTIONS
677
680
681
+ #include <string>
682
+
678
683
namespace nonstd {
679
684
680
685
template< class CharT, class Traits, class Allocator = std::allocator<CharT> >
@@ -2346,7 +2351,7 @@ namespace std {
2346
2351
#define SIMDJSON_SIMDJSON_VERSION_H
2347
2352
2348
2353
/** The version of simdjson being used (major.minor.revision) */
2349
- #define SIMDJSON_VERSION "3.9.3 "
2354
+ #define SIMDJSON_VERSION "3.9.4 "
2350
2355
2351
2356
namespace simdjson {
2352
2357
enum {
@@ -2361,7 +2366,7 @@ enum {
2361
2366
/**
2362
2367
* The revision (major.minor.REVISION) of simdjson being used.
2363
2368
*/
2364
- SIMDJSON_VERSION_REVISION = 3
2369
+ SIMDJSON_VERSION_REVISION = 4
2365
2370
};
2366
2371
} // namespace simdjson
2367
2372
0 commit comments