From be0f81bcf4ee18fc4b8fceecb6d980d0679686ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Mon, 29 May 2017 15:55:33 +0200 Subject: [PATCH] Removed useless typedefs --- Periodic_3_mesh_3/include/CGAL/IO/Medit_IO.h | 4 ---- .../include/CGAL/Periodic_3_mesh_triangulation_3.h | 1 - 2 files changed, 5 deletions(-) diff --git a/Periodic_3_mesh_3/include/CGAL/IO/Medit_IO.h b/Periodic_3_mesh_3/include/CGAL/IO/Medit_IO.h index 0e35c344b03..1cd03e664ba 100644 --- a/Periodic_3_mesh_3/include/CGAL/IO/Medit_IO.h +++ b/Periodic_3_mesh_3/include/CGAL/IO/Medit_IO.h @@ -81,8 +81,6 @@ Stream& write_complex_to_medit(Stream &out, C3t3 &c3t3, typedef typename C3t3::Triangulation Triangulation; typedef Triangulation Tr; - typedef typename Triangulation::Iso_cuboid Iso_cuboid; - typedef typename Triangulation::Triangle Triangle; typedef typename Triangulation::Tetrahedron Tetrahedron; @@ -98,8 +96,6 @@ Stream& write_complex_to_medit(Stream &out, C3t3 &c3t3, << "\n" << number_of_vertices * occurence_count << std::endl; - Iso_cuboid cb = t.domain(); - for(unsigned j = 0; j < occurence_count; j++ ) { for (Facet_iterator it =c3t3.facets_begin(); it!=c3t3.facets_end(); it++) { Triangle tri = t.triangle(canonicalize_triangle(t.periodic_triangle(*it))); diff --git a/Periodic_3_mesh_3/include/CGAL/Periodic_3_mesh_triangulation_3.h b/Periodic_3_mesh_3/include/CGAL/Periodic_3_mesh_triangulation_3.h index 7b648b5ed5b..7af95f698b8 100644 --- a/Periodic_3_mesh_3/include/CGAL/Periodic_3_mesh_triangulation_3.h +++ b/Periodic_3_mesh_3/include/CGAL/Periodic_3_mesh_triangulation_3.h @@ -79,7 +79,6 @@ public: typedef typename Base::Facet Facet; typedef typename Base::Edge Edge; - typedef typename Base::Point Point; typedef typename Base::Bare_point Bare_point; typedef typename Base::Weighted_point Weighted_point; typedef typename Base::Periodic_point Periodic_point;