fix warning about unused variable

This commit is contained in:
Thomas Capricelli 2009-08-29 02:48:44 +02:00
parent 982a146a67
commit e3db42611b

View File

@ -152,7 +152,6 @@ template<typename _Scalar> class AlignedVector3
{
ei_assert(m_coeffs.w()==Scalar(0));
ei_assert(other.m_coeffs.w()==Scalar(0));
Scalar r = m_coeffs.dot(other.m_coeffs);
return m_coeffs.dot(other.m_coeffs);
}