From c534298f2f42b820c4dd5567d6a7f9bdf9f6bdee Mon Sep 17 00:00:00 2001 From: cignoni Date: Tue, 23 Jun 2009 20:45:06 +0000 Subject: [PATCH] removed harmless warning --- vcg/simplex/edge/component.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vcg/simplex/edge/component.h b/vcg/simplex/edge/component.h index 92f236c0..6ddfdcaf 100644 --- a/vcg/simplex/edge/component.h +++ b/vcg/simplex/edge/component.h @@ -284,8 +284,8 @@ private: /*----------------------------- EEADJ ------------------------------*/ template class EmptyEEAdj: public T { public: - typename T::EdgePointer &EEp(const int & i ) { static typename T::EdgePointer ep=0; assert(0); return ep; } - typename T::EdgePointer cEEp(const int & i) { static typename T::EdgePointer ep=0; assert(0); return ep; } + typename T::EdgePointer &EEp(const int & ) { static typename T::EdgePointer ep=0; assert(0); return ep; } + typename T::EdgePointer cEEp(const int & ) { static typename T::EdgePointer ep=0; assert(0); return ep; } int &EEi(){static int z=0; return z;}; template < class LeftV> void ImportLocal(const LeftV & left ) { T::ImportLocal( left); }