From 607be65a03aace70d17f0b968d76986ff09acc78 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 25 Jan 2017 22:53:58 +0100 Subject: Fix duplicates of array_size bewteen unsupported and Core --- unsupported/Eigen/CXX11/src/util/EmulateArray.h | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'unsupported/Eigen/CXX11/src') diff --git a/unsupported/Eigen/CXX11/src/util/EmulateArray.h b/unsupported/Eigen/CXX11/src/util/EmulateArray.h index 30d3ebcff..03169d591 100644 --- a/unsupported/Eigen/CXX11/src/util/EmulateArray.h +++ b/unsupported/Eigen/CXX11/src/util/EmulateArray.h @@ -200,19 +200,15 @@ EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const T& array_get(const array& a) { return a[I]; } -template struct array_size; template struct array_size > { static const size_t value = N; }; -template struct array_size; template struct array_size& > { static const size_t value = N; }; -template struct array_size; template struct array_size > { static const size_t value = N; }; -template struct array_size; template struct array_size& > { static const size_t value = N; }; @@ -251,14 +247,6 @@ template constexpr inline T const& array_ #undef STD_GET_ARR_HACK -template struct array_size; -template struct array_size > { - static const size_t value = N; -}; -template struct array_size; -template struct array_size > { - static const size_t value = N; -}; } // end namespace internal } // end namespace Eigen -- cgit v1.2.3