From 3aad61401fcc60daf29f7f330ec93a8a55f94f23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Tue, 13 May 2014 10:33:24 +0000 Subject: [PATCH] Fixed copy paste typos in the vertex face and face face range code git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@1058 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 cd5a533f..cba36520 100644 --- a/src/OpenMesh/Core/Mesh/PolyConnectivity.hh +++ b/src/OpenMesh/Core/Mesh/PolyConnectivity.hh @@ -757,7 +757,7 @@ public: * as a range object suitable for C++11 range based for loops. */ ConstVertexFaceIter vf_range(VertexHandle _vh) const { - return ConstVertexFaceIter(*this, _vh); + return ConstVertexFaceRange(*this, _vh); } /** @@ -789,7 +789,7 @@ public: * as a range object suitable for C++11 range based for loops. */ ConstFaceFaceIter ff_range(FaceHandle _fh) const { - return ConstFaceFaceIter(*this, _fh); + return ConstFaceFaceRange(*this, _fh); } //@}