diff --git a/NewKernel_d/include/CGAL/NewKernel_d/function_objects_cartesian.h b/NewKernel_d/include/CGAL/NewKernel_d/function_objects_cartesian.h index 04d12fa91fc..a0bfe6384a7 100644 --- a/NewKernel_d/include/CGAL/NewKernel_d/function_objects_cartesian.h +++ b/NewKernel_d/include/CGAL/NewKernel_d/function_objects_cartesian.h @@ -671,7 +671,7 @@ template struct Vector_to_point : private Store_kernel { typedef Vector argument_type; result_type operator()(argument_type const&v)const{ CI ci(this->kernel()); - return CV(this->kernel())(ci(v,Begin_tag(),ci(v,End_tag()))); + return CV(this->kernel())(ci(v,Begin_tag()),ci(v,End_tag())); } }; }