From 15a7d84858c0d56e5758cae455cc5dfdfeb9ecf2 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 29 Sep 2021 19:50:14 +0300 Subject: [PATCH] Use basic_string instead of u8string --- include/boost/core/type_name.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/core/type_name.hpp b/include/boost/core/type_name.hpp index 7d47faf..64d98a6 100644 --- a/include/boost/core/type_name.hpp +++ b/include/boost/core/type_name.hpp @@ -348,7 +348,7 @@ inline std::string type_name( tn_identity ) #if defined(__cpp_char8_t) && __cpp_char8_t >= 201811L -inline std::string type_name( tn_identity ) +inline std::string type_name( tn_identity> ) { return "std::u8string"; }