MATH: Call the base constructor with the template arguments. Fix #362
This commit is contained in:
parent
f2ee09aef1
commit
243081610a
1 changed files with 2 additions and 2 deletions
|
@ -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> >() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue