From b987651396d2219094f151b3e6e96801c2544fa3 Mon Sep 17 00:00:00 2001 From: Yuriy Chernyshov Date: Sat, 28 Feb 2026 10:11:51 +0100 Subject: [PATCH] Fix clang-cl compilation Fix the following error: ``` #error "Never use directly; include instead." ``` --- source/xxhash.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/xxhash.c b/source/xxhash.c index 505e969..2937df1 100644 --- a/source/xxhash.c +++ b/source/xxhash.c @@ -46,9 +46,6 @@ # elif defined(__clang__) && defined(_MSC_VER) /* clang-cl.exe */ # include /* SSE2 */ # if XXH_DISPATCH_AVX2 || XXH_DISPATCH_AVX512 -# include -# include -# include # include /* AVX2, AVX512F */ # include # endif