From c5c6fad1b56fb52bd9c936e22bac27836b191079 Mon Sep 17 00:00:00 2001 From: toxie Date: Thu, 4 Jan 2024 20:24:58 +0100 Subject: [PATCH] clang warning fix --- ext/sse2neon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/sse2neon.h b/ext/sse2neon.h index 662b29b75..2531d3c5a 100644 --- a/ext/sse2neon.h +++ b/ext/sse2neon.h @@ -104,7 +104,7 @@ #pragma message("Macro name collisions may happen with unsupported compilers.") #endif -#if defined(__GNUC__) && __GNUC__ < 10 +#if !defined(__clang__) && defined(__GNUC__) && __GNUC__ < 10 #warning "GCC versions earlier than 10 are not supported." #endif