From 85ccd7dc0bbdd4bc944738c0857b2a077042270f Mon Sep 17 00:00:00 2001 From: dibenedetto Date: Tue, 30 Jun 2009 19:00:47 +0000 Subject: [PATCH] removed unused parameter warning. --- vcg/simplex/face/component.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vcg/simplex/face/component.h b/vcg/simplex/face/component.h index cf2bb12d..aa8af5c8 100644 --- a/vcg/simplex/face/component.h +++ b/vcg/simplex/face/component.h @@ -517,10 +517,10 @@ public: typename T::FacePointer const cFFp(const int) const { static typename T::FacePointer const fp=0; return fp; } typename T::EdgePointer &FEp(const int) { static typename T::EdgePointer fp=0; assert(0); return fp; } typename T::EdgePointer const cFEp(const int) const { static typename T::EdgePointer const fp=0; return fp; } - char &VFi(const int j){static char z=0; assert(0); return z;}; - char &FFi(const int j){static char z=0; assert(0); return z;}; - const char &cVFi(const int j){static char z=0; return z;}; - const char &cFFi(const int j){static char z=0; return z;}; + char &VFi(const int j){(void)j; static char z=0; assert(0); return z;}; + char &FFi(const int j){(void)j; static char z=0; assert(0); return z;}; + const char &cVFi(const int j){(void)j; static char z=0; return z;}; + const char &cFFi(const int j){(void)j; static char z=0; return z;}; template void ImportLocal(const LeftF & leftF){ T::ImportLocal(leftF);} inline void Alloc(const int & ns){T::Alloc(ns);}