aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/ReshapedHelper.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-09-19 11:49:26 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-09-19 11:49:26 +0200
commitdfa8439e4d71a3b8dafc38a8419998e683f3ee96 (patch)
treee265df048a88fe428c28f60d10e3544cd906eb7f /Eigen/src/Core/util/ReshapedHelper.h
parent5c68ba41a8b5fab7a742d786a12e7b3b92119b3e (diff)
Update reshaped API to use RowMajor/ColMajor directly as integral values instead of introducing RowOrder/ColOrder types.
The API changed from A.respahed(rows,cols,RowOrder) to A.template reshaped<RowOrder>(rows,cols).
Diffstat (limited to 'Eigen/src/Core/util/ReshapedHelper.h')
-rw-r--r--Eigen/src/Core/util/ReshapedHelper.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Eigen/src/Core/util/ReshapedHelper.h b/Eigen/src/Core/util/ReshapedHelper.h
index 7b7435205..97370c138 100644
--- a/Eigen/src/Core/util/ReshapedHelper.h
+++ b/Eigen/src/Core/util/ReshapedHelper.h
@@ -14,6 +14,7 @@
namespace Eigen {
enum AutoSize_t { AutoSize };
+const int AutoOrder = 2;
namespace internal {