aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2012-03-09 13:52:35 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2012-03-09 13:52:35 +0100
commit728ca6ad9c82e0fe54dcf83fd0dce558f2a57dbf (patch)
tree3ffd47f52f3a5048e2a2c9ea3140c633f1ad7b0b /Eigen
parent9b1ad5e5bd91db3e8417522d544198b84f5f1e68 (diff)
export IsRowMajor in MappedSparseMatrix
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/SparseCore/MappedSparseMatrix.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/SparseCore/MappedSparseMatrix.h b/Eigen/src/SparseCore/MappedSparseMatrix.h
index 2907e7129..d5551e72e 100644
--- a/Eigen/src/SparseCore/MappedSparseMatrix.h
+++ b/Eigen/src/SparseCore/MappedSparseMatrix.h
@@ -46,9 +46,9 @@ class MappedSparseMatrix
{
public:
EIGEN_SPARSE_PUBLIC_INTERFACE(MappedSparseMatrix)
+ enum { IsRowMajor = Base::IsRowMajor };
protected:
- enum { IsRowMajor = Base::IsRowMajor };
Index m_outerSize;
Index m_innerSize;