diff --git a/include/fmt/core.h b/include/fmt/core.h index 46e73e73..e548ce6d 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -2706,6 +2706,7 @@ FMT_FORMAT_AS(short, int); FMT_FORMAT_AS(unsigned short, unsigned); FMT_FORMAT_AS(long, detail::long_type); FMT_FORMAT_AS(unsigned long, detail::ulong_type); +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 b4abd3aa..6150e433 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(); }