Skip to content

Commit 7cb1a1f

Browse files
Fix widen implementation on arm64
1 parent cb3fead commit 7cb1a1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/xsimd/arch/xsimd_neon64.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1551,7 +1551,7 @@ namespace xsimd
15511551
/*********
15521552
* widen *
15531553
*********/
1554-
template <class A, class T>
1554+
template <class A>
15551555
XSIMD_INLINE std::array<batch<double, A>, 2> widen(batch<float, A> const& x, requires_arch<neon64>) noexcept
15561556
{
15571557
return { batch<double, A>(vcvt_f64_f32(vget_low_f32(x))), batch<double, A>(vcvt_high_f64_f32(x)) };

0 commit comments

Comments
 (0)