aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/PlainObjectBase.h
diff options
context:
space:
mode:
authorGravatar williami <williami@ENG38693Win7.ad.garmin.com>2012-06-04 10:21:16 -0500
committerGravatar williami <williami@ENG38693Win7.ad.garmin.com>2012-06-04 10:21:16 -0500
commitfc5f21903b7dde8c0681b25d7b1ef5aaf8b60a50 (patch)
treeef1bb8b610aa62e6e4089950c5057c012a7e8d0b /Eigen/src/Core/PlainObjectBase.h
parentcb64e587c559131047906e6b5da2093fa5946fda (diff)
Fixed RVCT 3.1 compiler errors.
Diffstat (limited to 'Eigen/src/Core/PlainObjectBase.h')
-rw-r--r--Eigen/src/Core/PlainObjectBase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/PlainObjectBase.h b/Eigen/src/Core/PlainObjectBase.h
index baab56536..f9c432732 100644
--- a/Eigen/src/Core/PlainObjectBase.h
+++ b/Eigen/src/Core/PlainObjectBase.h
@@ -49,7 +49,7 @@ EIGEN_ALWAYS_INLINE void check_rows_cols_for_overflow(Index rows, Index cols)
throw_std_bad_alloc();
}
-template <typename Derived, typename OtherDerived = Derived, bool IsVector = static_cast<bool>(Derived::IsVectorAtCompileTime)> struct conservative_resize_like_impl;
+template <typename Derived, typename OtherDerived = Derived, bool IsVector = bool(Derived::IsVectorAtCompileTime)> struct conservative_resize_like_impl;
template<typename MatrixTypeA, typename MatrixTypeB, bool SwapPointers> struct matrix_swap_impl;