From 52f44bf114d066afc9697eb72882b5ee85e8e188 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 25 Feb 2015 17:32:32 -0800 Subject: [PATCH] Fix clang warning warning: unknown warning group '-Wdocumentation-unknown-command', ignored [-Wunknown-pragmas] --- format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.h b/format.h index e15baeb8..7a9cc540 100644 --- a/format.h +++ b/format.h @@ -100,7 +100,7 @@ inline uint32_t clzll(uint64_t x) { #endif #ifdef __clang__ -# pragma clang diagnostic ignored "-Wdocumentation-unknown-command" +# pragma clang diagnostic ignored "-Wdocumentation" #endif #ifdef __GNUC_LIBSTD__