From 1e46c44142aa5e3ee672971712a34f6df6963ef0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Thu, 16 Jan 2025 10:41:47 +0100 Subject: [PATCH] Enable some disabled tests: operator==(Origin, Point_x) now exists --- Kernel_23/test/Kernel_23/include/CGAL/_test_cls_point_2.h | 3 --- Kernel_23/test/Kernel_23/include/CGAL/_test_cls_point_3.h | 3 --- 2 files changed, 6 deletions(-) diff --git a/Kernel_23/test/Kernel_23/include/CGAL/_test_cls_point_2.h b/Kernel_23/test/Kernel_23/include/CGAL/_test_cls_point_2.h index 6ea80be2a41..ca80bb3440a 100644 --- a/Kernel_23/test/Kernel_23/include/CGAL/_test_cls_point_2.h +++ b/Kernel_23/test/Kernel_23/include/CGAL/_test_cls_point_2.h @@ -88,11 +88,8 @@ _test_cls_point_2(const R& ) assert( p0 == CGAL::ORIGIN); assert( p1 != CGAL::ORIGIN ); - // Doesn't work; Point_2::operator== can't be used :( -#ifdef ENHANCED assert( CGAL::ORIGIN == p0 ); assert( CGAL::ORIGIN != p1 ); -#endif assert( p3.hx() == n1 ); // don't replace p3 assert( p3.hy() == n2 ); diff --git a/Kernel_23/test/Kernel_23/include/CGAL/_test_cls_point_3.h b/Kernel_23/test/Kernel_23/include/CGAL/_test_cls_point_3.h index b09c11e47a7..698f29b737d 100644 --- a/Kernel_23/test/Kernel_23/include/CGAL/_test_cls_point_3.h +++ b/Kernel_23/test/Kernel_23/include/CGAL/_test_cls_point_3.h @@ -86,11 +86,8 @@ _test_cls_point_3(const R& ) assert( p0 == CGAL::ORIGIN); assert( p1 != CGAL::ORIGIN); - // Doesn't work; Point_2::operator== can't be used :( -#ifdef ENHANCED assert( CGAL::ORIGIN == p0 ); assert( CGAL::ORIGIN != p1 ); -#endif // ENHANCED assert( p3.hx() == n1 ); // don't replace p3 assert( p3.hy() == n2 );