MATH: Fix build on certain compilers.

This commit is contained in:
Giulio Camuffo 2011-11-04 21:07:07 +01:00
parent c62424bfcb
commit e982124e05
2 changed files with 2 additions and 2 deletions

View file

@ -45,7 +45,7 @@ Vector3d::Matrix(const MatrixBase<3, 1> &vec) :
}
Vector3d::Matrix(float *data) :
MatrixType(data) {
MatrixType<3, 1>(data) {
}
void Vector3d::set(float lx, float ly, float lz) {