From 7bf1ecff9e4ed6b07b2cfab2d91eac4382f44a8d Mon Sep 17 00:00:00 2001 From: John Keiser Date: Sat, 15 Jul 2023 15:53:09 -0700 Subject: [PATCH] Mark amalgamation early in --- src/simdjson.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/simdjson.cpp b/src/simdjson.cpp index ea357b4cc..100690abb 100644 --- a/src/simdjson.cpp +++ b/src/simdjson.cpp @@ -4,6 +4,9 @@ SIMDJSON_PUSH_DISABLE_UNUSED_WARNINGS +#include "generic/dependencies.h" +#include "simdjson/amalgamated.h" + #include "to_chars.cpp" #include "from_chars.cpp" #include "internal/error_tables.cpp" @@ -12,10 +15,6 @@ SIMDJSON_PUSH_DISABLE_UNUSED_WARNINGS #include "internal/simdprune_tables.cpp" #include "implementation.cpp" -#include "simdjson/generic/dependencies.h" -#include "generic/dependencies.h" -#include "simdjson/amalgamated.h" - #if SIMDJSON_IMPLEMENTATION_ARM64 #include "arm64.cpp" #endif