Skip to content

Commit

Permalink
Fix a compile error introduced in #1738
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Jun 23, 2020
1 parent 4e94c64 commit 978521b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/fmt/format.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@
#if __cplusplus == 201103L || __cplusplus == 201402L
# if defined(__clang__)
# define FMT_FALLTHROUGH [[clang::fallthrough]]
# elif FMT_GCC_VERSION >= 700 && !defined(__PGI)
&& (!defined(__EDG_VERSION__) || __EDG_VERSION__ >= 520)
# elif FMT_GCC_VERSION >= 700 && !defined(__PGI) && \
(!defined(__EDG_VERSION__) || __EDG_VERSION__ >= 520)
# define FMT_FALLTHROUGH [[gnu::fallthrough]]
# else
# define FMT_FALLTHROUGH
Expand Down

0 comments on commit 978521b

Please sign in to comment.