From 467520e7a44a87b31ab09bb8d50c4dc56ed24aca Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 6 Feb 2019 11:34:59 -0800 Subject: [PATCH] Remove unused macro --- include/fmt/format-inl.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/include/fmt/format-inl.h b/include/fmt/format-inl.h index 107129f6..783465c2 100644 --- a/include/fmt/format-inl.h +++ b/include/fmt/format-inl.h @@ -551,14 +551,6 @@ FMT_FUNC int grisu2_gen_digits(char* buf, uint32_t hi, uint64_t lo, int& exp, } } -#if FMT_CLANG_VERSION -# define FMT_FALLTHROUGH [[clang::fallthrough]]; -#elif FMT_GCC_VERSION >= 700 -# define FMT_FALLTHROUGH [[gnu::fallthrough]]; -#else -# define FMT_FALLTHROUGH -#endif - template FMT_FUNC typename std::enable_if::type grisu2_format(Double value, buffer& buf, core_format_specs, int& exp) {