From 50ab490cecf03bfac1bf52b5dbbc2466ac87cac6 Mon Sep 17 00:00:00 2001 From: nicopietroni Date: Mon, 19 Oct 2015 08:47:42 +0000 Subject: [PATCH] minor change in VEIterator --- vcg/simplex/edge/pos.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vcg/simplex/edge/pos.h b/vcg/simplex/edge/pos.h index 7d7d846d..321f0142 100644 --- a/vcg/simplex/edge/pos.h +++ b/vcg/simplex/edge/pos.h @@ -285,8 +285,8 @@ public: VEIterator(EdgeType * _e, const int & _z){e = _e; z = _z;} /// Constructor which takes a pointer to vertex - VEIterator(VertexType * _v){ - e = _v->VEp(); z = _v->VEi(); + VEIterator(const VertexType * _v){ + e = _v->cVEp(); z = _v->cVEi(); assert(z>=0 && "VE adjacency not initialized"); }