Xcode4.3 fixes for debug mode. refs #464

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@555 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2012-03-05 14:17:36 +00:00
parent 99a293fe7e
commit 637381f19c
2 changed files with 2 additions and 2 deletions

View File

@@ -93,7 +93,7 @@ typename PolyMeshT<Kernel>::Normal
PolyMeshT<Kernel>:: PolyMeshT<Kernel>::
calc_face_normal(FaceHandle _fh) const calc_face_normal(FaceHandle _fh) const
{ {
assert(halfedge_handle(_fh).is_valid()); assert(this->halfedge_handle(_fh).is_valid());
ConstFaceVertexIter fv_it(this->cfv_iter(_fh)); ConstFaceVertexIter fv_it(this->cfv_iter(_fh));
Point p0 = this->point(fv_it); Point p0 = this->point(fv_it);

View File

@@ -71,7 +71,7 @@ typename TriMeshT<Kernel>::Normal
TriMeshT<Kernel>:: TriMeshT<Kernel>::
calc_face_normal(FaceHandle _fh) const calc_face_normal(FaceHandle _fh) const
{ {
assert(halfedge_handle(_fh).is_valid()); assert(this->halfedge_handle(_fh).is_valid());
ConstFaceVertexIter fv_it(this->cfv_iter(_fh)); ConstFaceVertexIter fv_it(this->cfv_iter(_fh));
const Point& p0(this->point(fv_it)); ++fv_it; const Point& p0(this->point(fv_it)); ++fv_it;