From 2bb3d11cd096c313fec3d19a2370fa9e42511d08 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 21 Mar 2018 15:23:17 +0100 Subject: [PATCH] Remove unused typedef --- Mesh_3/examples/Mesh_3/mesh_hybrid_mesh_domain.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Mesh_3/examples/Mesh_3/mesh_hybrid_mesh_domain.cpp b/Mesh_3/examples/Mesh_3/mesh_hybrid_mesh_domain.cpp index 3fee4e37e9c..72a191e696e 100644 --- a/Mesh_3/examples/Mesh_3/mesh_hybrid_mesh_domain.cpp +++ b/Mesh_3/examples/Mesh_3/mesh_hybrid_mesh_domain.cpp @@ -22,9 +22,7 @@ // Sphere Domain typedef CGAL::Exact_predicates_inexact_constructions_kernel K; -typedef K::FT FT; -typedef K::Point_3 Point; -typedef FT (Function)(const Point&); + typedef CGAL::Labeled_mesh_domain_3 Implicit_domain; // Polyhedral Domain @@ -182,6 +180,9 @@ typedef Mesh_criteria::Facet_criteria Facet_criteria; typedef Mesh_criteria::Cell_criteria Cell_criteria; // Function +typedef K::FT FT; +typedef K::Point_3 Point; + FT sphere_centered_at_111 (const Point& p) { const FT dx=p.x()-1;