aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/Meta.h
diff options
context:
space:
mode:
authorGravatar Rasmus Munk Larsen <rmlarsen@google.com>2018-08-01 12:36:24 -0700
committerGravatar Rasmus Munk Larsen <rmlarsen@google.com>2018-08-01 12:36:24 -0700
commit7f8b53fd0e359aa2b1a588489f31135a8c52b55f (patch)
treed5438b846204f16c27b88e36fed2272336659f99 /Eigen/src/Core/util/Meta.h
parentbcb29f890ccdbf4922780ed5da0e23db65d7ae64 (diff)
bug #1580: Fix cuda clang build. STL is not supported, so std::equal_to and std::not_equal breaks compilation.
Update the definition of EIGEN_CONSTEXPR_ARE_DEVICE_FUNC to exclude clang. See also PR 450.
Diffstat (limited to 'Eigen/src/Core/util/Meta.h')
-rwxr-xr-xEigen/src/Core/util/Meta.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/util/Meta.h b/Eigen/src/Core/util/Meta.h
index 658cfa9eb..f27b8e85d 100755
--- a/Eigen/src/Core/util/Meta.h
+++ b/Eigen/src/Core/util/Meta.h
@@ -569,7 +569,7 @@ template<typename T, typename U> struct scalar_product_traits
} // end namespace internal
namespace numext {
-
+
#if defined(EIGEN_GPU_COMPILE_PHASE)
template<typename T> EIGEN_DEVICE_FUNC void swap(T &a, T &b) { T tmp = b; b = a; a = tmp; }
#else