diff --git a/include/fmt/core.h b/include/fmt/core.h index 4d50d383..9a9b1a84 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -2705,7 +2705,6 @@ FMT_FORMAT_AS(short, int); FMT_FORMAT_AS(unsigned short, unsigned); FMT_FORMAT_AS(long, long long); FMT_FORMAT_AS(unsigned long, unsigned long long); -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); diff --git a/test/format-test.cc b/test/format-test.cc index 6150e433..b4abd3aa 100644 --- a/test/format-test.cc +++ b/test/format-test.cc @@ -2159,12 +2159,12 @@ TEST(format_test, test_formatters_enabled) { check_enabled_formatters(); check_enabled_formatters(); }