From 5f740f5fbff597dae4ee83b2103141d6bed24e25 Mon Sep 17 00:00:00 2001 From: Dantali0n Date: Tue, 28 Oct 2025 20:54:09 +0100 Subject: [PATCH] AVX2 instead of AVX__2 I swear I had fixed this already mmh Co-authored-by: Bram Veenboer --- src/lookup_avx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lookup_avx.cpp b/src/lookup_avx.cpp index 03c7814..b8debbb 100644 --- a/src/lookup_avx.cpp +++ b/src/lookup_avx.cpp @@ -12,7 +12,7 @@ static_assert(HAVE_AVX == 0, "__AVX__ should be defined when HAVE_AVX is " #endif #if defined(HAVE_AVX2) && !defined(__AVX2__) -static_assert(HAVE_AVX2 == 0, "__AVX__2 should be defined when HAVE_AVX2 is " +static_assert(HAVE_AVX2 == 0, "__AVX2__ should be defined when HAVE_AVX2 is " "defined"); #endif