From 13b282b76aa68f2fb67623cfa0813a56eb71e115 Mon Sep 17 00:00:00 2001 From: Weiqun Zhang Date: Fri, 2 Feb 2024 11:47:36 -0800 Subject: [PATCH] Fix warning --- Src/Base/AMReX_INT.H | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Src/Base/AMReX_INT.H b/Src/Base/AMReX_INT.H index 53ae74e0f18..f54852cb64b 100644 --- a/Src/Base/AMReX_INT.H +++ b/Src/Base/AMReX_INT.H @@ -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 {