diff --git a/Cartesian_kernel/include/CGAL/Cartesian/Vector_3.h b/Cartesian_kernel/include/CGAL/Cartesian/Vector_3.h index 00c23440cbe..5733f9165d0 100644 --- a/Cartesian_kernel/include/CGAL/Cartesian/Vector_3.h +++ b/Cartesian_kernel/include/CGAL/Cartesian/Vector_3.h @@ -64,9 +64,6 @@ public: explicit VectorC3(const Line_3 &l) { *this = R().construct_vector_3_object()(l); } - VectorC3(const FT_ &x, const FT_ &y, const FT_ &z) - : base(Rep{x, y, z}) {} - template VectorC3(T1 &&x, T2 &&y, T3 &&z) : base(fwd_make_array(std::forward(x), std::forward(y), std::forward(z))) {}