mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-06 14:14:46 +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
|
#if EIGEN_COMP_ICC
|
||||||
typedef std::intptr_t IntPtr;
|
typedef intptr_t IntPtr;
|
||||||
typedef std::uintptr_t UIntPtr;
|
typedef uintptr_t UIntPtr;
|
||||||
#else
|
#else
|
||||||
typedef std::ptrdiff_t IntPtr;
|
typedef std::ptrdiff_t IntPtr;
|
||||||
typedef std::size_t UIntPtr;
|
typedef std::size_t UIntPtr;
|
||||||
|
Loading…
Reference in New Issue
Block a user