diff options
author | Gael Guennebaud <g.gael@free.fr> | 2008-10-27 18:09:37 +0000 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2008-10-27 18:09:37 +0000 |
commit | 3e502abfdac8e9ca3afdcd66522f94cbfc192608 (patch) | |
tree | e57554673c290e70a48b8416098b5f8cafe969cb /Eigen | |
parent | b26e04f40b113f54e1d5b405d7cd88e21a37c919 (diff) |
add Eigen namespace in EIGEN_STATIC_ASSERT
Diffstat (limited to 'Eigen')
-rw-r--r-- | Eigen/src/Core/util/StaticAssert.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/util/StaticAssert.h b/Eigen/src/Core/util/StaticAssert.h index fbaf676de..79174a51d 100644 --- a/Eigen/src/Core/util/StaticAssert.h +++ b/Eigen/src/Core/util/StaticAssert.h @@ -74,7 +74,7 @@ }; #define EIGEN_STATIC_ASSERT(CONDITION,MSG) \ - if (ei_static_assert<CONDITION ? true : false>::MSG) {} + if (Eigen::ei_static_assert<CONDITION ? true : false>::MSG) {} #endif // CXX0X |