aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Cast.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-01-10 20:45:35 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-01-10 20:45:35 +0000
commit45a4b61b5fd6dab699f75e62dcf891d3faaf8384 (patch)
tree2eb2a5343a2174283c3a1569a09cae2951c559ba /Eigen/src/Core/Cast.h
parent209cf7c91f4276ca666509d2613ae0e71d4e76a8 (diff)
switch to enums everywhere
Diffstat (limited to 'Eigen/src/Core/Cast.h')
-rw-r--r--Eigen/src/Core/Cast.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Eigen/src/Core/Cast.h b/Eigen/src/Core/Cast.h
index 73fdbc25a..6963003cc 100644
--- a/Eigen/src/Core/Cast.h
+++ b/Eigen/src/Core/Cast.h
@@ -57,8 +57,10 @@ template<typename NewScalar, typename MatrixType> class Cast : NoOperatorEquals,
Cast(const MatRef& matrix) : m_matrix(matrix) {}
private:
- static const int RowsAtCompileTime = MatrixType::Traits::RowsAtCompileTime,
- ColsAtCompileTime = MatrixType::Traits::ColsAtCompileTime;
+ enum {
+ RowsAtCompileTime = MatrixType::Traits::RowsAtCompileTime,
+ ColsAtCompileTime = MatrixType::Traits::ColsAtCompileTime
+ };
const Cast& _ref() const { return *this; }
int _rows() const { return m_matrix.rows(); }
int _cols() const { return m_matrix.cols(); }