aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Reshaped.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-10-03 11:41:47 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-10-03 11:41:47 +0200
commit5f26f57598b4f795cdaf5797fdb33f0e948cc81c (patch)
treee32a248b84216c0d10db00a6780fa7b164c55870 /Eigen/src/Core/Reshaped.h
parent0481900e25764f16e8723d2588f818d3a610cfad (diff)
Change the logic of A.reshaped<Order>() to be a simple alias to A.reshaped<Order>(AutoSize,fix<1>).
This means that now AutoOrder is allowed, and it always return a column-vector.
Diffstat (limited to 'Eigen/src/Core/Reshaped.h')
-rw-r--r--Eigen/src/Core/Reshaped.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/Reshaped.h b/Eigen/src/Core/Reshaped.h
index aaa5a5739..b7bd1b292 100644
--- a/Eigen/src/Core/Reshaped.h
+++ b/Eigen/src/Core/Reshaped.h
@@ -125,7 +125,7 @@ template<typename XprType, int Rows, int Cols, int Order> class Reshaped
}
};
-// The generic default implementation for dense reshape simplu forward to the internal::ReshapedImpl_dense
+// The generic default implementation for dense reshape simply forward to the internal::ReshapedImpl_dense
// that must be specialized for direct and non-direct access...
template<typename XprType, int Rows, int Cols, int Order>
class ReshapedImpl<XprType, Rows, Cols, Order, Dense>