aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/plugins
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-09-21 11:48:22 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-09-21 11:48:22 +0200
commit47720e797012f6ef2f50da1f0e79fdc4f16e60a1 (patch)
treeea4fdc65a8cc431e61fb27fea8a661ade765054b /Eigen/src/plugins
parentc3a19527a213cbfa5dc8112c75347702c3a29644 (diff)
Doc fixes
Diffstat (limited to 'Eigen/src/plugins')
-rw-r--r--Eigen/src/plugins/ReshapedMethods.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Eigen/src/plugins/ReshapedMethods.h b/Eigen/src/plugins/ReshapedMethods.h
index a7320e2e0..2bb0b8623 100644
--- a/Eigen/src/plugins/ReshapedMethods.h
+++ b/Eigen/src/plugins/ReshapedMethods.h
@@ -1,13 +1,14 @@
+#ifdef EIGEN_PARSED_BY_DOXYGEN
+
/// \returns an expression of \c *this with reshaped sizes.
///
/// \param nRows the number of rows in the reshaped expression, specified at either run-time or compile-time, or AutoSize
/// \param nCols the number of columns in the reshaped expression, specified at either run-time or compile-time, or AutoSize
-/// \tparam NRowsType the type of the value handling the number of rows, typically Index.
/// \tparam Order specifies whether the coefficients should be processed in column-major-order (ColMajor), in row-major-order (RowMajor),
/// or follows the \em natural order of the nested expression (AutoOrder). The default is ColMajor.
+/// \tparam NRowsType the type of the value handling the number of rows, typically Index.
/// \tparam NColsType the type of the value handling the number of columns, typically Index.
-/// \tparam OrderType the type of the order
///
/// Dynamic size example: \include MatrixBase_reshaped_int_int.cpp
/// Output: \verbinclude MatrixBase_reshaped_int_int.out
@@ -26,7 +27,6 @@
///
/// \sa operator()(placeholders::all), class Reshaped, fix, fix<N>(int)
///
-#ifdef EIGEN_PARSED_BY_DOXYGEN
template<int Order = ColMajor, typename NRowsType, typename NColsType>
EIGEN_DEVICE_FUNC
inline Reshaped<Derived,...>