Skip to content

Commit bff3a8f

Browse files
committed
Fix warning
1 parent 33a7e99 commit bff3a8f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/xsimd/arch/xsimd_neon.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ namespace xsimd
623623
struct load_masked<>
624624
{
625625
template <size_t I, class A, class T, bool Use>
626-
static XSIMD_INLINE batch<T, A> apply(T const* mem, batch<T, A> acc, std::integral_constant<bool, Use>) noexcept
626+
static XSIMD_INLINE batch<T, A> apply(T const* /* mem */, batch<T, A> acc, std::integral_constant<bool, Use>) noexcept
627627
{
628628
return acc;
629629
}
@@ -645,7 +645,7 @@ namespace xsimd
645645
}
646646

647647
template <class A, class T, bool Value, bool... Values, class Mode>
648-
XSIMD_INLINE batch<T, A> load_masked(T const* mem, batch_bool_constant<T, A, Value, Values...> mask, Mode, requires_arch<neon>) noexcept
648+
XSIMD_INLINE batch<T, A> load_masked(T const* mem, batch_bool_constant<T, A, Value, Values...> /* mask */, Mode, requires_arch<neon>) noexcept
649649
{
650650
// Call insert whenever Values... are true
651651
return detail::load_masked<Values...>::template apply<0>(mem, broadcast(T(0), A {}), std::integral_constant<bool, Value> {});

0 commit comments

Comments
 (0)