Skip to content

Commit ffa19fb

Browse files
AntoinePrvserge-sans-paille
authored andcommitted
Fix warning
1 parent 6842624 commit ffa19fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)