From 218a7b98401aee558b96e21d8ba90641eb3e9371 Mon Sep 17 00:00:00 2001 From: Eugene Zhulenev Date: Tue, 18 Sep 2018 10:57:00 -0700 Subject: Enable DSizes type promotion with c++03 compilers --- .../Eigen/CXX11/src/Tensor/TensorDimensions.h | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h') diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h b/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h index 5de0d0de7..dbf5af094 100644 --- a/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +++ b/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h @@ -290,22 +290,24 @@ struct DSizes : array { } } -#ifdef EIGEN_HAS_CXX11 // Enable DSizes index type promotion only if we are promoting to the // larger type, e.g. allow to promote dimensions of type int to long. - template::type - >::value, int>::type = 0> + template EIGEN_DEVICE_FUNC - explicit DSizes(const array& other) { + explicit DSizes(const array& other, + // Default template parameters require c++11. + typename internal::enable_if< + internal::is_same< + DenseIndex, + typename internal::promote_index_type< + DenseIndex, + OtherIndex + >::type + >::value, void*>::type = 0) { for (int i = 0; i < NumDims; ++i) { (*this)[i] = static_cast(other[i]); } } -#endif // EIGEN_HAS_CXX11 #ifdef EIGEN_HAS_INDEX_LIST template -- cgit v1.2.3