From f46a7a37bde343864661a9cceb2483f0dee25649 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Tue, 13 May 2014 10:36:57 +0000 Subject: [PATCH] Typo fixed from last commit git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@1059 fdac6126-5c0c-442c-9429-916003d36597 --- src/OpenMesh/Core/Mesh/PolyConnectivity.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OpenMesh/Core/Mesh/PolyConnectivity.hh b/src/OpenMesh/Core/Mesh/PolyConnectivity.hh index cba36520..f6b112bf 100644 --- a/src/OpenMesh/Core/Mesh/PolyConnectivity.hh +++ b/src/OpenMesh/Core/Mesh/PolyConnectivity.hh @@ -756,7 +756,7 @@ public: * @return The faces incident to the specified vertex * as a range object suitable for C++11 range based for loops. */ - ConstVertexFaceIter vf_range(VertexHandle _vh) const { + ConstVertexFaceRange vf_range(VertexHandle _vh) const { return ConstVertexFaceRange(*this, _vh); } @@ -788,7 +788,7 @@ public: * @return The faces adjacent to the specified face * as a range object suitable for C++11 range based for loops. */ - ConstFaceFaceIter ff_range(FaceHandle _fh) const { + ConstFaceFaceRange ff_range(FaceHandle _fh) const { return ConstFaceFaceRange(*this, _fh); }