mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
Fix compilation with old ICC version (use C99 types instead of C++11 ones)
This commit is contained in:
parent
1ae2567861
commit
e0cb73b46b
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user