Skip to content

Commit a009dd4

Browse files
committed
Fix rvv namespace
1 parent 850cdd5 commit a009dd4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/xsimd/arch/xsimd_rvv.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1306,7 +1306,7 @@ namespace xsimd
13061306
{
13071307
XSIMD_IF_CONSTEXPR(I == 0)
13081308
{
1309-
return detail::rvvmv_lane0(arg);
1309+
return detail_rvv::rvvmv_lane0(arg);
13101310
}
13111311
return get(arg, I, rvv {});
13121312
}
@@ -1316,7 +1316,7 @@ namespace xsimd
13161316
{
13171317
XSIMD_IF_CONSTEXPR(I == 0)
13181318
{
1319-
return std::complex<T> { detail::rvvmv_lane0(arg.real()), detail::rvvmv_lane0(arg.imag()) };
1319+
return std::complex<T> { detail_rvv::rvvmv_lane0(arg.real()), detail_rvv::rvvmv_lane0(arg.imag()) };
13201320
}
13211321
return get(arg, I, rvv {});
13221322
}

0 commit comments

Comments
 (0)