From d6590e3bd21d3e4eca2b899628c87f9c18d020d9 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 2 Oct 2021 08:46:18 -0700 Subject: [PATCH] Fix compiler check --- include/fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 7199c5f4..2f361e63 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -156,7 +156,7 @@ FMT_END_NAMESPACE // __builtin_clz is broken in clang with Microsoft CodeGen: // https://github.com/fmtlib/fmt/issues/519. -#ifndef FMT_MSC_VER +#if !FMT_MSC_VER # if FMT_HAS_BUILTIN(__builtin_clz) || FMT_GCC_VERSION || FMT_ICC_VERSION # define FMT_BUILTIN_CLZ(n) __builtin_clz(n) # endif