aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/plugins/IndexedViewMethods.h
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2017-02-14 15:36:21 -0800
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2017-02-14 15:36:21 -0800
commit31a25ab226b49560c0e652a7c821a3efa6994946 (patch)
tree20c50ae15c349bab7f442e66eda73f24fd46129f /Eigen/src/plugins/IndexedViewMethods.h
parent0d153ded29022021c4f7ac24b73a0adb1e423013 (diff)
parent5937c4ae32feec178d56282694f06ed16cfe7352 (diff)
Merged eigen/eigen into default
Diffstat (limited to 'Eigen/src/plugins/IndexedViewMethods.h')
-rw-r--r--Eigen/src/plugins/IndexedViewMethods.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/Eigen/src/plugins/IndexedViewMethods.h b/Eigen/src/plugins/IndexedViewMethods.h
index 81e463623..22c1666c5 100644
--- a/Eigen/src/plugins/IndexedViewMethods.h
+++ b/Eigen/src/plugins/IndexedViewMethods.h
@@ -7,7 +7,6 @@
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#if EIGEN_HAS_INDEXED_VIEW
#if !defined(EIGEN_PARSED_BY_DOXYGEN)
// This file is automatically included twice to generate const and non-const versions
@@ -113,6 +112,8 @@ operator()(const RowIndices& rowIndices, const ColIndices& colIndices) EIGEN_IND
return Base::operator()(internal::eval_expr_given_size(rowIndices,rows()),internal::eval_expr_given_size(colIndices,cols()));
}
+#if EIGEN_HAS_STATIC_ARRAY_TEMPLATE
+
// The folowing three overloads are needed to handle raw Index[N] arrays.
template<typename RowIndicesT, std::size_t RowIndicesN, typename ColIndices>
@@ -139,6 +140,8 @@ operator()(const RowIndicesT (&rowIndices)[RowIndicesN], const ColIndicesT (&col
(derived(), rowIndices, colIndices);
}
+#endif // EIGEN_HAS_STATIC_ARRAY_TEMPLATE
+
// Overloads for 1D vectors/arrays
template<typename Indices>
@@ -182,6 +185,8 @@ operator()(const IndexType& id) EIGEN_INDEXED_VIEW_METHOD_CONST
return Base::operator()(internal::eval_expr_given_size(id,size()));
}
+#if EIGEN_HAS_STATIC_ARRAY_TEMPLATE
+
template<typename IndicesT, std::size_t IndicesN>
typename internal::enable_if<IsRowMajor,
IndexedView<EIGEN_INDEXED_VIEW_METHOD_CONST Derived,IvcIndex,const IndicesT (&)[IndicesN]> >::type
@@ -202,6 +207,8 @@ operator()(const IndicesT (&indices)[IndicesN]) EIGEN_INDEXED_VIEW_METHOD_CONST
(derived(), indices, IvcIndex(0));
}
+#endif // EIGEN_HAS_STATIC_ARRAY_TEMPLATE
+
#undef EIGEN_INDEXED_VIEW_METHOD_CONST
#undef EIGEN_INDEXED_VIEW_METHOD_TYPE
@@ -258,4 +265,3 @@ IndexedView_or_VectorBlock
operator()(const Indices& indices);
#endif // EIGEN_PARSED_BY_DOXYGEN
-#endif // EIGEN_HAS_INDEXED_VIEW