From c209a384a02c9db598834d68be5ac761f6bd819a Mon Sep 17 00:00:00 2001 From: dibenedetto Date: Wed, 22 Aug 2012 18:36:59 +0000 Subject: [PATCH] fixed Color4bOcf interface (missing "public" section). --- vcg/simplex/vertex/component_ocf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/simplex/vertex/component_ocf.h b/vcg/simplex/vertex/component_ocf.h index 3fc68df8..7b9daaa8 100644 --- a/vcg/simplex/vertex/component_ocf.h +++ b/vcg/simplex/vertex/component_ocf.h @@ -418,7 +418,7 @@ public: }; template class Color4bOcf: public ColorOcf { - static void Name(std::vector & name){name.push_back(std::string("Color4bOcf"));T::Name(name);} +public: static void Name(std::vector & name){name.push_back(std::string("Color4bOcf"));T::Name(name);} }; ///*-------------------------- QUALITY ----------------------------------*/