aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Transpose.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Core/Transpose.h')
-rw-r--r--Eigen/src/Core/Transpose.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Eigen/src/Core/Transpose.h b/Eigen/src/Core/Transpose.h
index dd0f8cc3e..b6a19c751 100644
--- a/Eigen/src/Core/Transpose.h
+++ b/Eigen/src/Core/Transpose.h
@@ -50,12 +50,12 @@ template<typename MatrixType> class Transpose
EIGEN_INHERIT_ASSIGNMENT_OPERATORS(Transpose)
- private:
- static const TraversalOrder _Order = (MatrixType::Order == ColumnMajor)
+ static const TraversalOrder Order = (MatrixType::Order == ColumnMajor)
? RowMajor : ColumnMajor;
- static const int _RowsAtCompileTime = MatrixType::ColsAtCompileTime,
- _ColsAtCompileTime = MatrixType::RowsAtCompileTime;
+ static const int RowsAtCompileTime = MatrixType::ColsAtCompileTime,
+ ColsAtCompileTime = MatrixType::RowsAtCompileTime;
+ private:
const Transpose& _ref() const { return *this; }
int _rows() const { return m_matrix.cols(); }
int _cols() const { return m_matrix.rows(); }