diff --git a/vcg/simplex/edge/component.h b/vcg/simplex/edge/component.h index cdebcd80..e6ca9ddc 100644 --- a/vcg/simplex/edge/component.h +++ b/vcg/simplex/edge/component.h @@ -115,7 +115,7 @@ public: static bool HasMarkOcc() { return false; } inline void InitIMark() { } inline int & IMark() { assert(0); static int tmp=-1; return tmp;} - inline const int & IMark() const {return 0;} + inline int IMark() const {return 0;} template < class LeftV> void ImportData(const LeftV & left ) { T::ImportData( left); } static void Name(std::vector & name){T::Name(name);}