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! */
22/* including simdjson.h: */
33/* begin file simdjson.h */
44#ifndef SIMDJSON_H
104104#include <strings.h>
105105#endif
106106
107+ // We are using size_t without namespace std:: throughout the project
108+ using std::size_t;
109+
107110#ifdef _MSC_VER
108111#define SIMDJSON_VISUAL_STUDIO 1
109112/**
@@ -547,13 +550,13 @@ SIMDJSON_PUSH_DISABLE_ALL_WARNINGS
547550// Distributed under the Boost Software License, Version 1.0.
548551// (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
549552
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
551554
552555#ifndef NONSTD_SV_LITE_H_INCLUDED
553556#define NONSTD_SV_LITE_H_INCLUDED
554557
555558#define string_view_lite_MAJOR 1
556- #define string_view_lite_MINOR 7
559+ #define string_view_lite_MINOR 8
557560#define string_view_lite_PATCH 0
558561
559562#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
675678
676679#if nssv_CONFIG_CONVERSION_STD_STRING_FREE_FUNCTIONS
677680
681+ #include <string>
682+
678683namespace nonstd {
679684
680685template< class CharT, class Traits, class Allocator = std::allocator<CharT> >
@@ -2346,7 +2351,7 @@ namespace std {
23462351#define SIMDJSON_SIMDJSON_VERSION_H
23472352
23482353/** The version of simdjson being used (major.minor.revision) */
2349- #define SIMDJSON_VERSION "3.9.3 "
2354+ #define SIMDJSON_VERSION "3.9.4 "
23502355
23512356namespace simdjson {
23522357enum {
@@ -2361,7 +2366,7 @@ enum {
23612366 /**
23622367 * The revision (major.minor.REVISION) of simdjson being used.
23632368 */
2364- SIMDJSON_VERSION_REVISION = 3
2369+ SIMDJSON_VERSION_REVISION = 4
23652370};
23662371} // namespace simdjson
23672372
0 commit comments