Skip to content

Commit fae9dae

Browse files
authored
[FIX] Support GCC14 (#2745)
1 parent dce0e9b commit fae9dae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

itex/core/ops/utils/integral_types.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ typedef short int16; // NOLINT(runtime/int)
2525
typedef int int32;
2626

2727
// for compatible with int64_t
28-
typedef std::int64_t int64;
28+
typedef int64_t int64;
2929

3030
typedef unsigned char uint8;
3131
typedef unsigned short uint16; // NOLINT(runtime/int)
3232
typedef unsigned int uint32;
33-
typedef std::uint64_t uint64;
33+
typedef uint64_t uint64;
3434

3535
} // namespace itex
3636

0 commit comments

Comments
 (0)