SWDEV-535738 - Properly define size_t for windows (#481)

[ROCm/clr commit: adda2602e1]
Este commit está contenido en:
Belton-Schure, Aidan
2025-06-18 15:02:11 +01:00
cometido por GitHub
padre d42c7875a6
commit 615b904729
@@ -43,7 +43,11 @@ typedef signed char int8_t;
typedef signed short int16_t;
typedef signed int int32_t;
typedef signed long long int64_t;
#if defined(_MSC_VER)
typedef unsigned long long size_t;
#else
typedef unsigned long size_t;
#endif
template <class _Tp, _Tp __v> struct integral_constant {
static constexpr const _Tp value = __v;