From 4263a7bf3a742f0dd021f75f65b7ee5e50e9567f Mon Sep 17 00:00:00 2001 From: iyaz Date: Wed, 28 Aug 2013 02:57:59 +0300 Subject: [PATCH] underscore prefix to postfix, adding author name --- .../include/CGAL/Self_intersection_polyhedron_3.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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;