From be08e8295357ca21eaa2623cfc0cbbdeb231ae37 Mon Sep 17 00:00:00 2001 From: Benoit Steiner Date: Thu, 12 Nov 2015 18:37:40 -0800 Subject: Fixed typos --- unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h') diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h b/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h index 170dacb98..e3074734b 100644 --- a/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h +++ b/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h @@ -138,26 +138,26 @@ struct index_statically_lt_impl > { #else template -struct index_known_statically > { - EIGEN_ALWAYS_INLINE bool operator() (const DenseIndex) const { +struct index_known_statically_impl > { + static EIGEN_ALWAYS_INLINE bool run(const DenseIndex) { return true; } }; template -struct index_known_statically > { - EIGEN_ALWAYS_INLINE bool operator() (const DenseIndex) const { +struct index_known_statically_impl > { + static EIGEN_ALWAYS_INLINE bool run(const DenseIndex) { return true; } }; template -struct all_indices_known_statically > { +struct all_indices_known_statically_impl > { EIGEN_ALWAYS_INLINE bool operator() () const { return true; } }; template -struct all_indices_known_statically > { +struct all_indices_known_statically_impl > { EIGEN_ALWAYS_INLINE bool operator() () const { return true; } -- cgit v1.2.3