From b143b27807a3a5440421fab181d004d3eb83be72 Mon Sep 17 00:00:00 2001 From: cignoni Date: Sun, 18 Jul 2004 07:45:30 +0000 Subject: [PATCH] Removed two const modifiers from the VFIterator --- vcg/simplex/face/pos.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/vcg/simplex/face/pos.h b/vcg/simplex/face/pos.h index 1d35180d..cd407894 100644 --- a/vcg/simplex/face/pos.h +++ b/vcg/simplex/face/pos.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.8 2004/07/15 12:03:07 ganovelli +minor changes + Revision 1.7 2004/07/15 11:28:44 ganovelli basefacetype to facetype @@ -342,9 +345,9 @@ public: /// Default constructor VFIterator(){} /// Constructor which associates the half-edge elementet with a face and its vertex - VFIterator(FaceType const * _f, const int & _z){f = _f; z = _z;} + VFIterator(FaceType * _f, const int & _z){f = _f; z = _z;} - const VFIFaceType * F() const { return f;} + VFIFaceType * F() const { return f;} const int I() const { return z;} bool End() const {return f==0;}