SWDEV-425490 - ptrdiff_t differs on windows and linux.

Change-Id: I5b943e869a6552870aa268be898182e806161b3c
This commit is contained in:
Jaydeep Patel
2023-10-05 13:41:24 +00:00
committed by Jaydeepkumar Patel
parent 124de0c519
commit 46de4256e0
@@ -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;