Skip to content

Commit

Permalink
Fix warning in FMT_STATIC_ASSERT on older GCC (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Nov 6, 2016
1 parent 8cef95f commit 2fa4655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fmt/format.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2fa4655

Please sign in to comment.