From 0b9ff5020e5e816f2e1eece750ede28d0d1915a5 Mon Sep 17 00:00:00 2001 From: serge-sans-paille Date: Wed, 16 Sep 2026 17:09:12 +0200 Subject: [PATCH] Add missing forward declaration needed by avx512vl-128 build --- include/xsimd/arch/xsimd_common_fwd.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/xsimd/arch/xsimd_common_fwd.hpp b/include/xsimd/arch/xsimd_common_fwd.hpp index b247b2bd6..139b0b282 100644 --- a/include/xsimd/arch/xsimd_common_fwd.hpp +++ b/include/xsimd/arch/xsimd_common_fwd.hpp @@ -60,6 +60,10 @@ namespace xsimd XSIMD_INLINE batch bitwise_rshift(batch const& self, batch const& other, requires_arch) noexcept; template >> XSIMD_INLINE batch bitwise_rshift(batch const& self, requires_arch) noexcept; + template + XSIMD_INLINE batch decr_if(batch const& self, Mask const& mask, requires_arch) noexcept; + template + XSIMD_INLINE batch incr_if(batch const& self, Mask const& mask, requires_arch) noexcept; template XSIMD_INLINE batch_bool gt(batch const& self, batch const& other, requires_arch) noexcept; template >>