Fix warning in FMT_STATIC_ASSERT on older GCC (#414)

This commit is contained in:
Victor Zverovich 2016-11-06 11:34:34 -08:00
parent 8cef95f7c3
commit 2fa4655af6

View File

@ -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