From a201c6197715f6578f64cb96258c2d9dafeb1724 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 14 Jun 2016 22:17:34 -0700 Subject: [PATCH] Suppress -Wpadded warnings --- fmt/format.h | 1 + 1 file changed, 1 insertion(+) diff --git a/fmt/format.h b/fmt/format.h index 70564e19..79390d64 100644 --- a/fmt/format.h +++ b/fmt/format.h @@ -106,6 +106,7 @@ typedef __int64 intmax_t; #if defined(__clang__) && !defined(FMT_ICC_VERSION) # pragma clang diagnostic push # pragma clang diagnostic ignored "-Wdocumentation-unknown-command" +# pragma clang diagnostic ignored "-Wpadded" #endif #ifdef __GNUC_LIBSTD__