Use basic_string<char8_t> instead of u8string

This commit is contained in:
Peter Dimov
2021-09-29 19:50:14 +03:00
parent 06023d4ffe
commit 15a7d84858

View File

@ -348,7 +348,7 @@ inline std::string type_name( tn_identity<std::u32string> )
#if defined(__cpp_char8_t) && __cpp_char8_t >= 201811L
inline std::string type_name( tn_identity<std::u8string> )
inline std::string type_name( tn_identity<std::basic_string<char8_t>> )
{
return "std::u8string";
}