Removed a wrong (?) copy constructor

This commit is contained in:
Paolo Cignoni 2004-03-10 00:35:01 +00:00
parent 7d78a93492
commit 9ec5d86675
1 changed files with 6 additions and 4 deletions

View File

@ -24,6 +24,9 @@
History History
$Log: not supported by cvs2svn $ $Log: not supported by cvs2svn $
Revision 1.1 2004/02/10 01:11:28 cignoni
Edited Comments and GPL license
****************************************************************************/ ****************************************************************************/
#ifndef __VCGLIB_COLOR4 #ifndef __VCGLIB_COLOR4
@ -63,10 +66,9 @@ public:
}; };
inline Color4 ( const T nx, const T ny, const T nz , const T nw ) :Point4<T>(nx,ny,nz,nw) {}; inline Color4 ( const T nx, const T ny, const T nz , const T nw ) :Point4<T>(nx,ny,nz,nw) {};
inline Color4 ( Color4 &c) :Point4<T>(c) {}; // inline Color4 ( Color4 &c) :Point4<T>(c) {};
inline Color4 (){}; inline Color4 (){};
inline Color4 (ColorConstant cc); inline Color4 (ColorConstant cc);
template <class Q> template <class Q>
inline void Import(const Color4<Q> & b ) inline void Import(const Color4<Q> & b )
{ {