From 098df72644c8416c6c2cab6c5a1c8631f20533ad Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 27 Mar 2024 10:49:18 +0100 Subject: [PATCH] remove a useless constructor --- Cartesian_kernel/include/CGAL/Cartesian/Vector_3.h | 3 --- 1 file changed, 3 deletions(-) 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))) {}