From 47a18b2fe98557590f35055a93d1932f7466d4db Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 7 Oct 2025 13:52:59 -0700 Subject: [PATCH] Minor cleanup --- include/fmt/base.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/fmt/base.h b/include/fmt/base.h index aaa2f550..d7679757 100644 --- a/include/fmt/base.h +++ b/include/fmt/base.h @@ -416,12 +416,12 @@ inline auto map(int128_opt) -> monostate { return {}; } inline auto map(uint128_opt) -> monostate { return {}; } #endif -#ifndef FMT_USE_BITINT -# if FMT_CLANG_VERSION >= 1500 && !defined(__CUDACC__) -# define FMT_USE_BITINT 1 -# else -# define FMT_USE_BITINT 0 -# endif +#ifdef FMT_USE_BITINT +// Use the provided definition. +#elif FMT_CLANG_VERSION >= 1500 && !defined(__CUDACC__) +# define FMT_USE_BITINT 1 +#else +# define FMT_USE_BITINT 0 #endif #if FMT_USE_BITINT