SWDEV-425490 - ptrdiff_t differs on windows and linux.

Change-Id: I5b943e869a6552870aa268be898182e806161b3c
Этот коммит содержится в:
Jaydeep Patel
2023-10-05 13:41:24 +00:00
коммит произвёл Jaydeepkumar Patel
родитель 124de0c519
Коммит 46de4256e0
+4
Просмотреть файл
@@ -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;