diff --git a/Kernel_23/include/CGAL/Point_2.h b/Kernel_23/include/CGAL/Point_2.h index 97a5b9f282c..5c370d85147 100644 --- a/Kernel_23/include/CGAL/Point_2.h +++ b/Kernel_23/include/CGAL/Point_2.h @@ -72,7 +72,7 @@ public: {} template < typename T1, typename T2 > - Self(const T1 &x, const T2 &y) + Point_2(const T1 &x, const T2 &y) : Rep(typename R::Construct_point_2()(Return_base_tag(), x, y)) {} diff --git a/Kernel_23/include/CGAL/Point_3.h b/Kernel_23/include/CGAL/Point_3.h index 70f0a016baf..72ea3337670 100644 --- a/Kernel_23/include/CGAL/Point_3.h +++ b/Kernel_23/include/CGAL/Point_3.h @@ -72,7 +72,7 @@ public: : Rep(p) {} template < typename T1, typename T2, typename T3 > - Self(const T1& x, const T2& y, const T3& z) + Point_3(const T1& x, const T2& y, const T3& z) : Rep(typename R::Construct_point_3()(Return_base_tag(), x, y, z)) {} diff --git a/Kernel_23/include/CGAL/Vector_2.h b/Kernel_23/include/CGAL/Vector_2.h index e65bcdbda02..e450e47e93e 100644 --- a/Kernel_23/include/CGAL/Vector_2.h +++ b/Kernel_23/include/CGAL/Vector_2.h @@ -86,7 +86,7 @@ public: : RVector_2(typename R::Construct_vector_2()(Return_base_tag(), v)) {} template < typename T1, typename T2 > - Self(const T1 &x, const T2 &y) + Vector_2(const T1 &x, const T2 &y) : RVector_2(typename R::Construct_vector_2()(Return_base_tag(), x,y)) {} Vector_2(const RT &x, const RT &y, const RT &w) diff --git a/Kernel_23/include/CGAL/Vector_3.h b/Kernel_23/include/CGAL/Vector_3.h index 5bd5d43d481..1f15e0ec042 100644 --- a/Kernel_23/include/CGAL/Vector_3.h +++ b/Kernel_23/include/CGAL/Vector_3.h @@ -85,7 +85,7 @@ public: : Rep(typename R::Construct_vector_3()(Return_base_tag(), v)) {} template < typename T1, typename T2, typename T3 > - Self(const T1 &x, const T2 &y, const T3 &z) + Vector_3(const T1 &x, const T2 &y, const T3 &z) : Rep(typename R::Construct_vector_3()(Return_base_tag(), x, y, z)) {} Vector_3(const RT& x, const RT& y, const RT& z, const RT& w)