Skip to content

Commit 8a7892d

Browse files
committed
fix: correct ptrue helper namespace in SVE mulhi
1 parent efa57c1 commit 8a7892d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/xsimd/arch/xsimd_sve.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ namespace xsimd
297297
template <class A, class T, typename std::enable_if<std::is_integral<T>::value, int>::type = 0>
298298
XSIMD_INLINE batch<T, A> mulhi(batch<T, A> const& lhs, batch<T, A> const& rhs, requires_arch<sve>) noexcept
299299
{
300-
return svmulh_x(detail::sve_ptrue<T>(), lhs, rhs);
300+
return svmulh_x(detail_sve::ptrue<T>(), lhs, rhs);
301301
}
302302

303303
// div

0 commit comments

Comments
 (0)