SWDEV-425490 - ptrdiff_t differs on windows and linux.
Change-Id: I5b943e869a6552870aa268be898182e806161b3c
[ROCm/clr commit: 46de4256e0]
This commit is contained in:
committed by
Jaydeepkumar Patel
parent
b444ee5b3b
commit
38fec06989
@@ -93,7 +93,11 @@ typedef unsigned int uint32_t;
|
||||
typedef unsigned long long uint64_t;
|
||||
typedef signed int int32_t;
|
||||
typedef signed long long int64_t;
|
||||
#if defined(__GLIBCXX__)
|
||||
typedef long int ptrdiff_t;
|
||||
#else
|
||||
typedef long long ptrdiff_t;
|
||||
#endif
|
||||
typedef long clock_t;
|
||||
namespace std {
|
||||
using ::uint32_t;
|
||||
|
||||
Reference in New Issue
Block a user