diff --git a/Operations_on_polyhedra/include/CGAL/Self_intersection_polyhedron_3.h b/Operations_on_polyhedra/include/CGAL/Self_intersection_polyhedron_3.h index 83ad29c10c6..5d35ea42d50 100644 --- a/Operations_on_polyhedra/include/CGAL/Self_intersection_polyhedron_3.h +++ b/Operations_on_polyhedra/include/CGAL/Self_intersection_polyhedron_3.h @@ -17,7 +17,7 @@ // $Id$ // // -// Author(s) : Pierre Alliez, Laurent Rineau +// Author(s) : Pierre Alliez, Laurent Rineau, Ilker O. Yaz // compute self-intersection of a CGAL triangle polyhedron mesh // original code from Lutz Kettner @@ -167,21 +167,21 @@ template class Facet_handle_types { template - struct _Get; + struct Get_; template - struct _Get { + struct Get_ { typedef typename Polyhedron::Facet_const_iterator Facet_iterator; typedef typename Polyhedron::Facet_const_handle Facet_handle; }; template - struct _Get { + struct Get_ { typedef typename Polyhedron::Facet_iterator Facet_iterator; typedef typename Polyhedron::Facet_handle Facet_handle; }; - typedef _Get::value> Get; + typedef Get_::value> Get; public: typedef typename Get::Facet_iterator Facet_iterator; typedef typename Get::Facet_handle Facet_handle;