From 393169f79daf60c038b3e11e657fa5f3ee41c24c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 14 Mar 2024 20:55:05 +0530 Subject: [PATCH] Fix #7225 --- kitty/simd-string-impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/simd-string-impl.h b/kitty/simd-string-impl.h index e63cbc2c5..3bbf95a15 100644 --- a/kitty/simd-string-impl.h +++ b/kitty/simd-string-impl.h @@ -20,7 +20,7 @@ #define NOSIMD { fatal("No SIMD implementations for this CPU"); } bool FUNC(utf8_decode_to_esc)(UTF8Decoder *d UNUSED, const uint8_t *src UNUSED, size_t src_sz UNUSED) NOSIMD const uint8_t* FUNC(find_either_of_two_bytes)(const uint8_t *haystack UNUSED, const size_t sz UNUSED, const uint8_t a UNUSED, const uint8_t b UNUSED) NOSIMD -void FUNC(xor_data64)(const uint8_t key[64], uint8_t* data, const size_t data_sz); +void FUNC(xor_data64)(const uint8_t key[64] UNUSED, uint8_t* data UNUSED, const size_t data_sz UNUSED) NOSIMD #undef NOSIMD #else