From 9ec5d86675109f827a7118324c3863c5ea9d1f8f Mon Sep 17 00:00:00 2001 From: cignoni Date: Wed, 10 Mar 2004 00:35:01 +0000 Subject: [PATCH] Removed a wrong (?) copy constructor --- vcg/space/color4.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/vcg/space/color4.h b/vcg/space/color4.h index 268b957e..721ef412 100644 --- a/vcg/space/color4.h +++ b/vcg/space/color4.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.1 2004/02/10 01:11:28 cignoni +Edited Comments and GPL license + ****************************************************************************/ #ifndef __VCGLIB_COLOR4 @@ -63,11 +66,10 @@ public: }; inline Color4 ( const T nx, const T ny, const T nz , const T nw ) :Point4(nx,ny,nz,nw) {}; - inline Color4 ( Color4 &c) :Point4(c) {}; + // inline Color4 ( Color4 &c) :Point4(c) {}; inline Color4 (){}; inline Color4 (ColorConstant cc); - - template + template inline void Import(const Color4 & b ) { _v[0] = T(b[0]); @@ -246,4 +248,4 @@ typedef Color4 Color4f; } // end of NameSpace -#endif \ No newline at end of file +#endif