Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
WeiqunZhang committed Feb 2, 2024
1 parent f7319c5 commit 13b282b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Src/Base/AMReX_INT.H
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ namespace amrex {
#pragma GCC diagnostic ignored "-Wpedantic"
#endif

typedef unsigned __int128 amrex_uint128_t;
typedef __int128 amrex_int128_t;
typedef unsigned __int128 amrex_uint128_t; // NOLINT(modernize-use-using)
typedef __int128 amrex_int128_t; // NOLINT(modernize-use-using)

#ifdef __cplusplus
namespace amrex {
Expand Down

0 comments on commit 13b282b

Please sign in to comment.