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 07dff6a3dd7..f1c0e6ed49c 100644 --- a/NewKernel_d/include/CGAL/NewKernel_d/function_objects_cartesian.h +++ b/NewKernel_d/include/CGAL/NewKernel_d/function_objects_cartesian.h @@ -1015,14 +1015,14 @@ template struct Construct_bbox : private Store_kernel { typedef typename Get_type::type RT; typedef typename Get_type::type Point; typedef typename Get_functor >::type CI; - + typedef Bbox result_type; typedef Point argument_type; result_type operator()(Point const&a)const{ CI ci(this->kernel()); typename Real_embeddable_traits::To_interval f; typename Get_functor::type pd(this->kernel()); - return result_type(pd(a), make_transforming_iterator(ci(a,Begin_tag()),f), make_transforming_iterator(ci(a,End_tag())), f); + return result_type(pd(a), make_transforming_iterator(ci(a, Begin_tag()), f), make_transforming_iterator(ci(a, End_tag()), f)); } }; } diff --git a/NewKernel_d/test/NewKernel_d/Epick_d.cpp b/NewKernel_d/test/NewKernel_d/Epick_d.cpp index 033f4aad8f5..9c96d87e363 100644 --- a/NewKernel_d/test/NewKernel_d/Epick_d.cpp +++ b/NewKernel_d/test/NewKernel_d/Epick_d.cpp @@ -220,6 +220,7 @@ void test2(){ using std::abs; P a=cp(3,4); CGAL::Bbox,double> bb2 = cb(a); + std::cout << "bb2 = " << bb2 << std::endl; assert(pd(a)==2); assert(pv(a)[1]==4); P b=vp(cv(5,6,7)); @@ -754,7 +755,8 @@ int main(){ test2(); test2i(); test3(); test3(); -#if !defined _MSC_VER || _MSC_VER >= 1910 + +#if 0 // !defined _MSC_VER || _MSC_VER >= 1910 test2>>(); test3>>(); test3>();