From dd4d02617f39cd9dd32ee64a12539bd1302719ee Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Thu, 31 Jul 2025 18:40:54 -0400 Subject: [PATCH] removing unnecessary hack --- include/simdjson/common_defs.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/include/simdjson/common_defs.h b/include/simdjson/common_defs.h index a151795a6..2cd772e88 100644 --- a/include/simdjson/common_defs.h +++ b/include/simdjson/common_defs.h @@ -199,17 +199,6 @@ double from_chars(const char *first, const char* end) noexcept; // We assume by default static linkage #define SIMDJSON_DLLIMPORTEXPORT #endif - -/** - * Workaround for the vcpkg package manager. Only vcpkg should - * ever touch the next line. The SIMDJSON_USING_LIBRARY macro is otherwise unused. - */ -#if SIMDJSON_USING_LIBRARY -#define SIMDJSON_DLLIMPORTEXPORT __declspec(dllimport) -#endif -/** - * End of workaround for the vcpkg package manager. - */ #else #define SIMDJSON_DLLIMPORTEXPORT #endif