From 3d17d3d3f349655325387b485f4f325d3460d77c Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 19 Jan 2022 07:20:15 +0000 Subject: [PATCH] Deal with LCC --- .../Linear_cell_complex_copy_test.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Linear_cell_complex/test/Linear_cell_complex/Linear_cell_complex_copy_test.cpp b/Linear_cell_complex/test/Linear_cell_complex/Linear_cell_complex_copy_test.cpp index dffacdce1c9..46dd56192c9 100644 --- a/Linear_cell_complex/test/Linear_cell_complex/Linear_cell_complex_copy_test.cpp +++ b/Linear_cell_complex/test/Linear_cell_complex/Linear_cell_complex_copy_test.cpp @@ -6,6 +6,7 @@ #include #include +#include using namespace std; @@ -188,7 +189,7 @@ struct Converter_map9_points_into_map5_points (const CMap9& map1, CMap5& map2, CMap9::Dart_const_handle dh1, CMap5::Dart_handle dh2) const { - CGAL_assertion( map1.attribute<0>(dh1)!=map1.null_handle ); + assert( map1.attribute<0>(dh1)!=map1.null_handle ); CMap5::Attribute_handle<0>::type res = map2.attribute<0>(dh2); if ( res==map2.null_handle ) @@ -245,7 +246,7 @@ struct Converter_gmap9_points_into_gmap5_points (const GMap9& map1, GMap5& map2, GMap9::Dart_const_handle dh1, GMap5::Dart_handle dh2) const { - CGAL_assertion( map1.attribute<0>(dh1)!=map1.null_handle ); + assert( map1.attribute<0>(dh1)!=map1.null_handle ); GMap5::Attribute_handle<0>::type res = map2.attribute<0>(dh2); if ( res==map2.null_handle ) @@ -502,7 +503,7 @@ void create2Dmap(Map& map) CreateAttributes::run(map); CreateAttributes::run(map); CreateAttributes::run(map); - CGAL_assertion ( map.is_valid() ); + assert( map.is_valid() ); } template void create3Dmap(Map& map) @@ -526,7 +527,7 @@ void create3Dmap(Map& map) CreateAttributes::run(map); CreateAttributes::run(map); CreateAttributes::run(map); - CGAL_assertion ( map.is_valid() ); + assert( map.is_valid() ); } template @@ -572,7 +573,7 @@ void create4Dmap(Map& map) CreateAttributes::run(map); CreateAttributes::run(map); CreateAttributes::run(map); - CGAL_assertion ( map.is_valid() ); + assert( map.is_valid() ); } template