From a51503c4f66c5c60f9470cffd036b5fd41b40d2c Mon Sep 17 00:00:00 2001 From: Daniel Collin Date: Fri, 7 Mar 2025 13:38:01 +0100 Subject: [PATCH] Fixed compile error on some compilers --- clay.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clay.h b/clay.h index 810eb50..7c3ab21 100644 --- a/clay.h +++ b/clay.h @@ -1769,7 +1769,7 @@ bool Clay__MemCmp(const char *s1, const char *s2, int32_t length); uint8x16_t v2 = vld1q_u8((const uint8_t *)s2); // Compare vectors - if (vminvq_u32(vceqq_u8(v1, v2)) != 0xFFFFFFFF) { // If there's a difference + if (vminvq_u32(vreinterpretq_u32_u8(vceqq_u8(v1, v2))) != 0xFFFFFFFF) { // If there's a difference return false; }