From 99e67f0859ef4d778c02bca64f841deb67f51b0f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 5 Jan 2024 12:41:54 +0530 Subject: [PATCH] ... --- kitty/simd-string.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kitty/simd-string.c b/kitty/simd-string.c index 65c39055c..c05a7428d 100644 --- a/kitty/simd-string.c +++ b/kitty/simd-string.c @@ -5,14 +5,15 @@ * Distributed under terms of the GPL3 license. */ -#define SIMDE_ENABLE_NATIVE_ALIASES #include "data-types.h" #include "charsets.h" #include "simd-string.h" -#include "simd-string-impl.h" #undef BITS +#define BITS 128 +#include "simd-string-impl.h" #define BITS 256 #include "simd-string-impl.h" +#undef BITS static bool has_sse4_2 = false, has_avx2 = false; // find_either_of_two_bytes {{{