Skip to content

Commit

Permalink
128-bit integral feature define fix (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxEWinkler committed Oct 15, 2020
1 parent 4235277 commit 94ed075
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/EASTL/internal/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 94ed075

Please sign in to comment.