Skip to content

Commit

Permalink
[FIX] Support GCC14 (#2745)
Browse files Browse the repository at this point in the history
  • Loading branch information
yisonzhu authored Aug 23, 2024
1 parent dce0e9b commit fae9dae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions itex/core/ops/utils/integral_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ typedef short int16; // NOLINT(runtime/int)
typedef int int32;

// for compatible with int64_t
typedef std::int64_t int64;
typedef int64_t int64;

typedef unsigned char uint8;
typedef unsigned short uint16; // NOLINT(runtime/int)
typedef unsigned int uint32;
typedef std::uint64_t uint64;
typedef uint64_t uint64;

} // namespace itex

Expand Down

0 comments on commit fae9dae

Please sign in to comment.