From 9d7b53cb9baf4b1c3f00f9f70cf70753fc51a2d8 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 5 May 2021 08:14:12 -0700 Subject: [PATCH] Remove redundant formatter specialization for byte --- include/fmt/format.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 62620ae3..f08ea81c 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -35,7 +35,6 @@ #include // errno #include // std::signbit -#include // std::byte #include #include #include // std::numeric_limits @@ -3468,9 +3467,6 @@ FMT_FORMAT_AS(Char*, const Char*); FMT_FORMAT_AS(std::basic_string, basic_string_view); FMT_FORMAT_AS(std::nullptr_t, const void*); FMT_FORMAT_AS(detail::std_string_view, basic_string_view); -#ifdef __cpp_lib_byte -FMT_FORMAT_AS(std::byte, unsigned); -#endif template struct formatter : formatter {