From 17fdd5a08cb447191ce49e43d8191fa4afbb6519 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Wed, 7 Aug 2013 09:26:22 +0000 Subject: [PATCH] Removed extra typename keyword in non template code git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@896 fdac6126-5c0c-442c-9429-916003d36597 --- src/OpenMesh/Core/Mesh/PolyConnectivity.hh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/OpenMesh/Core/Mesh/PolyConnectivity.hh b/src/OpenMesh/Core/Mesh/PolyConnectivity.hh index d8b63e51..7c367dc2 100644 --- a/src/OpenMesh/Core/Mesh/PolyConnectivity.hh +++ b/src/OpenMesh/Core/Mesh/PolyConnectivity.hh @@ -98,23 +98,23 @@ public: /* * Vertex-centered circulators */ - typedef Iterators::GenericCirculatorT::toVertexHandle> VertexVertexIter; - typedef Iterators::GenericCirculatorT::toHalfedgeHandle> VertexOHalfedgeIter; - typedef Iterators::GenericCirculatorT::toOppositeHalfedgeHandle> VertexIHalfedgeIter; - typedef Iterators::GenericCirculatorT::toFaceHandle> VertexFaceIter; - typedef Iterators::GenericCirculatorT::toEdgeHandle> VertexEdgeIter; @@ -127,19 +127,19 @@ public: /* * Face-centered circulators */ - typedef Iterators::GenericCirculatorT::toVertexHandle> FaceVertexIter; - typedef Iterators::GenericCirculatorT::toHalfedgeHandle> FaceHalfedgeIter; - typedef Iterators::GenericCirculatorT::toEdgeHandle> FaceEdgeIter; - typedef Iterators::GenericCirculatorT::toOppositeFaceHandle> FaceFaceIter;