Commit d6590e3b authored by Victor Zverovich's avatar Victor Zverovich

Fix compiler check

parent 134aec40
...@@ -156,7 +156,7 @@ FMT_END_NAMESPACE ...@@ -156,7 +156,7 @@ FMT_END_NAMESPACE
// __builtin_clz is broken in clang with Microsoft CodeGen: // __builtin_clz is broken in clang with Microsoft CodeGen:
// https://github.com/fmtlib/fmt/issues/519. // 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 # if FMT_HAS_BUILTIN(__builtin_clz) || FMT_GCC_VERSION || FMT_ICC_VERSION
# define FMT_BUILTIN_CLZ(n) __builtin_clz(n) # define FMT_BUILTIN_CLZ(n) __builtin_clz(n)
# endif # endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment