From b3c91eb26ef37a63d8969c9a607d0440b855392c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Fri, 2 Mar 2012 16:54:35 +0000 Subject: [PATCH] More Xcode 4.3 compatibility fixes. closes #464 git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@553 fdac6126-5c0c-442c-9429-916003d36597 --- src/OpenMesh/Core/Mesh/TriMeshT.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenMesh/Core/Mesh/TriMeshT.hh b/src/OpenMesh/Core/Mesh/TriMeshT.hh index 816f3903..95bcbe63 100644 --- a/src/OpenMesh/Core/Mesh/TriMeshT.hh +++ b/src/OpenMesh/Core/Mesh/TriMeshT.hh @@ -179,7 +179,7 @@ public: /// Edge split (= 2-to-4 split) /// Do not call PolyMeshT function below as this does the wrong operation inline void split(EdgeHandle _eh, const Point& _p) - { Kernel::split(_eh, add_vertex(_p)); } + { Kernel::split(_eh, this->add_vertex(_p)); } inline void split(EdgeHandle _eh, VertexHandle _vh) { Kernel::split(_eh, _vh); }