From 2fa4655af62d672954271ded4a2e5ce5319e5946 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 6 Nov 2016 11:34:34 -0800 Subject: [PATCH] Fix warning in FMT_STATIC_ASSERT on older GCC (#414) --- fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmt/format.h b/fmt/format.h index 803d309a..e32bc175 100644 --- a/fmt/format.h +++ b/fmt/format.h @@ -1202,7 +1202,7 @@ inline fmt::StringRef thousands_sep(...) { return ""; } #define FMT_CONCAT(a, b) a##b -#if FMT_GCC_VERSION >= 407 +#if FMT_GCC_VERSION >= 303 # define FMT_UNUSED __attribute__((unused)) #else # define FMT_UNUSED