From a146d6c8c87e3016ffa28e0b0e49872dec9e9ee5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Mon, 23 Jul 2012 13:04:20 +0000 Subject: [PATCH] Fixed gcc-4.7 error git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@628 fdac6126-5c0c-442c-9429-916003d36597 --- src/OpenMesh/Core/Mesh/PolyMeshT.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenMesh/Core/Mesh/PolyMeshT.hh b/src/OpenMesh/Core/Mesh/PolyMeshT.hh index 58216cfa..69e381e8 100644 --- a/src/OpenMesh/Core/Mesh/PolyMeshT.hh +++ b/src/OpenMesh/Core/Mesh/PolyMeshT.hh @@ -446,7 +446,7 @@ public: /** calculates the dihedral angle on the edge _eh \attention Needs the Attributes::Normal attribute for faces */ Scalar calc_dihedral_angle_fast(EdgeHandle _eh) const - { return calc_dihedral_angle_fast(halfedge_handle(_eh,0)); } + { return calc_dihedral_angle_fast(this->halfedge_handle(_eh,0)); } // calculates the dihedral angle on the halfedge _heh Scalar calc_dihedral_angle(HalfedgeHandle _heh) const