aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Geometry
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-03-11 08:45:53 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-03-11 08:45:53 +0000
commitf697ea6d306f05690abcb7dbfa2d6f8856f16ddb (patch)
treeb5414765429d0932cb0225edee14465f72d1ac46 /Eigen/src/Geometry
parent14691d68363b4903621400d670d0b3649cb5b02a (diff)
fix a few compilation errors and warnings (ICC)
Diffstat (limited to 'Eigen/src/Geometry')
-rw-r--r--Eigen/src/Geometry/Transform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Geometry/Transform.h b/Eigen/src/Geometry/Transform.h
index a8dc164e4..47e4b2925 100644
--- a/Eigen/src/Geometry/Transform.h
+++ b/Eigen/src/Geometry/Transform.h
@@ -386,7 +386,7 @@ public:
Transform& fromPositionOrientationScale(const MatrixBase<PositionDerived> &position,
const OrientationType& orientation, const MatrixBase<ScaleDerived> &scale);
- inline const MatrixType inverse(TransformTraits traits = Mode) const;
+ inline const MatrixType inverse(TransformTraits traits = (TransformTraits)Mode) const;
/** \returns a const pointer to the column major internal matrix */
const Scalar* data() const { return m_matrix.data(); }