Revert "More forwarding"

This reverts commit 6eb866f9d9.
This commit is contained in:
Sébastien Loriot
2024-02-27 10:18:50 +01:00
parent 4a222f1165
commit 30e9eac7bd
3 changed files with 1 additions and 12 deletions
@@ -3679,10 +3679,6 @@ namespace CartesianKernelFunctors {
operator()(Return_base_tag, const RT& x, const RT& y, const RT& z) const
{ return Rep(x, y, z); }
Rep // Vector_3
operator()(Return_base_tag, RT&& x, RT&& y, RT&& z) const
{ return Rep(std::forward<RT>(x), std::forward<RT>(y), std::forward<RT>(z)); }
Rep // Vector_3
operator()(Return_base_tag, const RT& x, const RT& y, const RT& z, const RT& w) const
{ return Rep(x, y, z, w); }