aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h
diff options
context:
space:
mode:
authorGravatar Gabriel Nützi <gnuetzi@gmx.ch>2015-10-09 19:10:08 +0200
committerGravatar Gabriel Nützi <gnuetzi@gmx.ch>2015-10-09 19:10:08 +0200
commitfc7478c04d16b8585d6eaff1ae2f473e247aaf2e (patch)
treec5dbed15d294075bc353bb7c00296294a8c58261 /unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h
parent7b34834f64aa03731dfb5bb01efc005820753932 (diff)
name changes 2
user: Gabriel Nützi <gnuetzi@gmx.ch> branch 'default' changed unsupported/Eigen/CXX11/src/Tensor/Tensor.h changed unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h')
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h b/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h
index 60a6c1469..01aedd3c9 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h
@@ -93,15 +93,15 @@ namespace internal{
template<typename IndexType, Index... Is>
EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
- array<Index,sizeof...(Is)> customIndex2Array(const IndexType & idx, numeric_list<Index,Is...>) {
+ array<Index,sizeof...(Is)> customIndices2Array(const IndexType & idx, numeric_list<Index,Is...>) {
return { idx(Is)... };
}
/** Make an array (for index/dimensions) out of a custom index */
template<typename Index, int NumIndices, typename IndexType>
EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
- array<Index,NumIndices> customIndex2Array(const IndexType & idx) {
- return customIndex2Array(idx, typename gen_numeric_list<Index,NumIndices>::type{});
+ array<Index,NumIndices> customIndices2Array(const IndexType & idx) {
+ return customIndices2Array(idx, typename gen_numeric_list<Index,NumIndices>::type{});
}