From ae09d558f065da2769fef31c6215f637a548df79 Mon Sep 17 00:00:00 2001 From: dibenedetto Date: Thu, 3 Sep 2009 14:48:08 +0000 Subject: [PATCH] added const to method. --- vcg/simplex/face/component.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/simplex/face/component.h b/vcg/simplex/face/component.h index ffef1483..0e08b62e 100644 --- a/vcg/simplex/face/component.h +++ b/vcg/simplex/face/component.h @@ -520,7 +520,7 @@ public: 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;}; + const char &cFFi(const int j) const {(void)j; static char z=0; return z;}; template void ImportLocal(const RightF & rightF){ T::ImportLocal(rightF);} inline void Alloc(const int & ns){T::Alloc(ns);}