From 728ca6ad9c82e0fe54dcf83fd0dce558f2a57dbf Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 9 Mar 2012 13:52:35 +0100 Subject: [PATCH] export IsRowMajor in MappedSparseMatrix --- Eigen/src/SparseCore/MappedSparseMatrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;