diff --git a/Isosurfacing_3/test/Isosurfacing_3/test_tmc_csg.cpp b/Isosurfacing_3/test/Isosurfacing_3/test_tmc_csg.cpp index 06adf87b596..b7e6b940f94 100644 --- a/Isosurfacing_3/test/Isosurfacing_3/test_tmc_csg.cpp +++ b/Isosurfacing_3/test/Isosurfacing_3/test_tmc_csg.cpp @@ -32,7 +32,6 @@ void test_cube() using Point = typename K::Point_3; using Vector = typename K::Vector_3; - using Mesh = CGAL::Surface_mesh; using Grid = IS::Cartesian_grid_3; using Values = IS::Value_function_3; using Domain = IS::Marching_cubes_domain_3; @@ -40,8 +39,6 @@ void test_cube() using Point_range = std::vector; using Polygon_range = std::vector >; - using Mesh = CGAL::Surface_mesh; - auto implicit_function = [](const Point& q) -> FT { // --- diff --git a/Isosurfacing_3/test/Isosurfacing_3/test_topology.cpp b/Isosurfacing_3/test/Isosurfacing_3/test_topology.cpp index c6431a72975..3d0605becca 100644 --- a/Isosurfacing_3/test/Isosurfacing_3/test_topology.cpp +++ b/Isosurfacing_3/test/Isosurfacing_3/test_topology.cpp @@ -32,7 +32,7 @@ template std::size_t connected_components(PolygonMesh& mesh) { using face_descriptor = typename boost::graph_traits::face_descriptor; - using FCCmap = typename PolygonMesh::Property_map; + using FCCmap = typename PolygonMesh::template Property_map; FCCmap fccmap = mesh.template add_property_map("f:CC").first; @@ -473,7 +473,6 @@ void compare_tmc_mc_trilinear(const std::array& case_val using Grid = IS::Cartesian_grid_3; using Values = IS::Interpolated_discrete_values_3; using Domain = IS::Marching_cubes_domain_3; - using FT = typename K::FT; using Point = typename K::Point_3; using Mesh = CGAL::Surface_mesh; using Point_range = std::vector; @@ -529,13 +528,12 @@ void compare_tmc_mc_trilinear(const std::array& case_val } template -void assert_tmc(const std::array& case_values, typename KERNEL::FT iso, int components, int euler, int boundaries) +void assert_tmc(const std::array& case_values, typename KERNEL::FT iso, std::size_t components, std::size_t euler, std::size_t boundaries) { using K = KERNEL; using Grid = IS::Cartesian_grid_3; using Values = IS::Interpolated_discrete_values_3; using Domain = IS::Marching_cubes_domain_3; - using FT = typename K::FT; using Point = typename K::Point_3; using Mesh = CGAL::Surface_mesh; using Point_range = std::vector;