From e0cb73b46bba4715526c24c5c6ff2d0d6f6ffc35 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 27 May 2016 10:28:09 +0200 Subject: Fix compilation with old ICC version (use C99 types instead of C++11 ones) --- Eigen/src/Core/util/Meta.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Eigen/src/Core/util/Meta.h') diff --git a/Eigen/src/Core/util/Meta.h b/Eigen/src/Core/util/Meta.h index 604f509b9..01a9647a3 100644 --- a/Eigen/src/Core/util/Meta.h +++ b/Eigen/src/Core/util/Meta.h @@ -28,8 +28,8 @@ namespace internal { */ #if EIGEN_COMP_ICC -typedef std::intptr_t IntPtr; -typedef std::uintptr_t UIntPtr; +typedef intptr_t IntPtr; +typedef uintptr_t UIntPtr; #else typedef std::ptrdiff_t IntPtr; typedef std::size_t UIntPtr; -- cgit v1.2.3