diff --git a/Surface_mesh_simplification/test/Surface_mesh_simplification/test_edge_collapse_stability.cpp b/Surface_mesh_simplification/test/Surface_mesh_simplification/test_edge_collapse_stability.cpp index f2efb218244..1a6a2786c6d 100644 --- a/Surface_mesh_simplification/test/Surface_mesh_simplification/test_edge_collapse_stability.cpp +++ b/Surface_mesh_simplification/test/Surface_mesh_simplification/test_edge_collapse_stability.cpp @@ -44,8 +44,8 @@ int main(int argc, char** argv) CGAL::Iso_cuboid_3 bbox(CGAL::Polygon_mesh_processing::bbox(mesh)); // scale a bit the bounding box bbox, because the kernel is SC - bbox = { bbox.min() - 0.01 * (bbox.max() - bbox.min()), - bbox.max() + 0.01 * (bbox.max() - bbox.min()) }; + bbox = { (bbox.min)() - 0.01 * ((bbox.max)() - (bbox.min)()), + (bbox.max)() + 0.01 * ((bbox.max)() - (bbox.min)()) }; std::cout << "Bbox: " << bbox << std::endl;