fix warning with gcc 4.2

This commit is contained in:
Gael Guennebaud 2009-09-15 11:27:31 +02:00
parent d5319f4ba8
commit 432fcefcb1

View File

@ -88,7 +88,7 @@ template<typename _Scalar> class AlignedVector3
{} {}
inline AlignedVector3(const AlignedVector3& other) inline AlignedVector3(const AlignedVector3& other)
: m_coeffs(other.m_coeffs) : Base(), m_coeffs(other.m_coeffs)
{} {}
template<typename XprType, int Size=XprType::SizeAtCompileTime> template<typename XprType, int Size=XprType::SizeAtCompileTime>