Typo fixed from last commit

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@1059 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2014-05-13 10:36:57 +00:00
parent 3aad61401f
commit f46a7a37bd

View File

@@ -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);
}