Skip to content

Commit 94ed075

Browse files
authored
128-bit integral feature define fix (#393)
1 parent 4235277 commit 94ed075

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/EASTL/internal/config.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@
8989
///////////////////////////////////////////////////////////////////////////////
9090

9191
#ifndef EASTL_VERSION
92-
#define EASTL_VERSION "3.17.00"
93-
#define EASTL_VERSION_N 31700
92+
#define EASTL_VERSION "3.17.01"
93+
#define EASTL_VERSION_N 31701
9494
#endif
9595

9696

@@ -864,7 +864,7 @@ namespace eastl
864864
#if EASTL_INT128_SUPPORTED
865865
#define EASTL_INT128_DEFINED 1
866866

867-
#if defined(EA_COMPILER_GNUC) || defined(EA_COMPILER_CLANG)
867+
#if defined(__SIZEOF_INT128__) || defined(EA_COMPILER_GNUC) || defined(EA_COMPILER_CLANG)
868868
typedef __int128_t eastl_int128_t;
869869
typedef __uint128_t eastl_uint128_t;
870870
#else

0 commit comments

Comments
 (0)