MATH: Call the base constructor with the template arguments. Fix #362

This commit is contained in:
Giulio Camuffo 2011-09-17 21:40:37 +02:00
parent f2ee09aef1
commit 243081610a

View file

@ -27,12 +27,12 @@
namespace Math { namespace Math {
Matrix<3, 3>::Matrix() : Matrix<3, 3>::Matrix() :
MatrixType<3, 3>(), Rotation3D() { MatrixType<3, 3>(), Rotation3D<Matrix<3, 3> >() {
} }
Matrix<3, 3>::Matrix(const MatrixBase<3, 3> &m) : Matrix<3, 3>::Matrix(const MatrixBase<3, 3> &m) :
MatrixType<3, 3>(m), Rotation3D() { MatrixType<3, 3>(m), Rotation3D<Matrix<3, 3> >() {
} }