From f98db2f0b9d450706b5eee4a2f63db3892d5c4ef Mon Sep 17 00:00:00 2001 From: AntoinePrv Date: Fri, 31 Oct 2025 11:34:01 +0100 Subject: [PATCH] Fix static_assert on i8mm --- test/test_arch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_arch.cpp b/test/test_arch.cpp index 9bb19291f..7d0a5a7a7 100644 --- a/test/test_arch.cpp +++ b/test/test_arch.cpp @@ -26,7 +26,7 @@ static_assert(xsimd::all_architectures::contains(), "defaul #endif #if !XSIMD_WITH_SVE -static_assert((std::is_same::value || !xsimd::neon64::supported()), "on arm, without sve, the best we can do is neon64"); +static_assert((std::is_base_of::value || !xsimd::neon64::supported()), "on arm, without sve, the best we can do is neon64"); #endif struct check_supported