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 @@ Vector2d::Matrix(const MatrixBase<2, 1> &vec) :
}
Vector2d::Matrix(float *data) :
MatrixType(data) {
MatrixType<2, 1>(data) {
}
void Vector2d::rotateAround(const Vector2d &point, const Angle &angle) {