From 94ed075fad835c02e8ebe460d5675882503d9e5b Mon Sep 17 00:00:00 2001 From: Max Winkler Date: Thu, 15 Oct 2020 10:41:04 -0700 Subject: [PATCH] 128-bit integral feature define fix (#393) --- include/EASTL/internal/config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/EASTL/internal/config.h b/include/EASTL/internal/config.h index cc881276..c41326ee 100644 --- a/include/EASTL/internal/config.h +++ b/include/EASTL/internal/config.h @@ -89,8 +89,8 @@ /////////////////////////////////////////////////////////////////////////////// #ifndef EASTL_VERSION - #define EASTL_VERSION "3.17.00" - #define EASTL_VERSION_N 31700 + #define EASTL_VERSION "3.17.01" + #define EASTL_VERSION_N 31701 #endif @@ -864,7 +864,7 @@ namespace eastl #if EASTL_INT128_SUPPORTED #define EASTL_INT128_DEFINED 1 - #if defined(EA_COMPILER_GNUC) || defined(EA_COMPILER_CLANG) + #if defined(__SIZEOF_INT128__) || defined(EA_COMPILER_GNUC) || defined(EA_COMPILER_CLANG) typedef __int128_t eastl_int128_t; typedef __uint128_t eastl_uint128_t; #else