From f34a4fa3358133e05afcf0845a58497d16436977 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Thu, 18 Dec 2008 21:04:06 +0000 Subject: * forgot to svn add 2 files * idea of Keir Mierle: make the static assert error msgs UPPERCASE --- Eigen/src/Geometry/RotationBase.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Eigen/src/Geometry/RotationBase.h') diff --git a/Eigen/src/Geometry/RotationBase.h b/Eigen/src/Geometry/RotationBase.h index 6ad057e03..5fec0f18d 100644 --- a/Eigen/src/Geometry/RotationBase.h +++ b/Eigen/src/Geometry/RotationBase.h @@ -116,7 +116,7 @@ Matrix<_Scalar, _Rows, _Cols, _Storage, _MaxRows, _MaxCols> template inline static Matrix ei_toRotationMatrix(const Scalar& s) { - EIGEN_STATIC_ASSERT(Dim==2,you_made_a_programming_mistake) + EIGEN_STATIC_ASSERT(Dim==2,YOU_MADE_A_PROGRAMMING_MISTAKE) return Rotation2D(s).toRotationMatrix(); } @@ -130,7 +130,7 @@ template inline static const MatrixBase& ei_toRotationMatrix(const MatrixBase& mat) { EIGEN_STATIC_ASSERT(OtherDerived::RowsAtCompileTime==Dim && OtherDerived::ColsAtCompileTime==Dim, - you_made_a_programming_mistake) + YOU_MADE_A_PROGRAMMING_MISTAKE) return mat; } -- cgit v1.2.3