aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/internal/Minor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/Minor.h')
-rw-r--r--src/internal/Minor.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/internal/Minor.h b/src/internal/Minor.h
index 05873f1f1..c7ddd5de3 100644
--- a/src/internal/Minor.h
+++ b/src/internal/Minor.h
@@ -36,6 +36,9 @@ template<typename MatrixType> class MatrixMinor
typedef typename MatrixType::Ref MatRef;
friend class EigenBase<Scalar, MatrixMinor<MatrixType> >;
typedef MatrixMinor Ref;
+
+ static const int RowsAtCompileTime = MatrixType::RowsAtCompileTime - 1,
+ ColsAtCompileTime = MatrixType::ColsAtCompileTime - 1;
MatrixMinor(const MatRef& matrix,
int row, int col = 0)