From b13473bdc797bddeb52516877e36765245ef19f2 Mon Sep 17 00:00:00 2001 From: ganovelli Date: Sat, 19 Jan 2008 17:49:05 +0000 Subject: [PATCH] missing const cVF added --- vcg/simplex/faceplus/component.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vcg/simplex/faceplus/component.h b/vcg/simplex/faceplus/component.h index 3d45f29e..dcedf65b 100644 --- a/vcg/simplex/faceplus/component.h +++ b/vcg/simplex/faceplus/component.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.18 2007/11/20 09:43:53 ganovelli +added missing include to color4 + Revision 1.17 2007/05/04 16:16:04 ganovelli added include to texcoor2 @@ -410,6 +413,8 @@ public: typename T::FacePointer const cFFp(const int) const { static typename T::FacePointer const fp=0; return fp; } char &VFi(const int j){static char z=0; return z;}; char &FFi(const int j){static char z=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;}; static bool HasVFAdjacency() { return false; } static bool HasFFAdjacency() { return false; } static bool HasFFAdjacencyOcc() { return false; }