From 14eae59c6a854ef833df81a1cfd033492af670db Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Fri, 20 Feb 2015 08:58:16 -0800 Subject: [PATCH] Correct FMT_BUILTIN_CLZ definition --- format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.h b/format.h index 14bfdaca..b8d81c14 100644 --- a/format.h +++ b/format.h @@ -565,7 +565,7 @@ struct BasicData { typedef BasicData<> Data; #if FMT_GCC_VERSION >= 400 || FMT_HAS_BUILTIN(__builtin_clz) -# define FMT_BUILTIN_CLZ(n) __builtin_clzll(n) +# define FMT_BUILTIN_CLZ(n) __builtin_clz(n) #endif #if FMT_GCC_VERSION >= 400 || FMT_HAS_BUILTIN(__builtin_clzll)