You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can print json::string and json::string_view with ostream,but we cann't use std::format to format them ,could we have std::formatterjson::string and std::formatterjson::string_view?
The text was updated successfully, but these errors were encountered:
typename Context::template formatter_type<std::remove_cv<Argi>> should be a BasicFormatter. format_context::formatter_type<T> is std::formatter<T, char>. Curiously, BasicFormatters are only required to work with instantiations of std::basic_format_context as Context.
So, it seems like the formatter should be something like this:
We can print json::string and json::string_view with ostream,but we cann't use std::format to format them ,could we have std::formatterjson::string and std::formatterjson::string_view?
The text was updated successfully, but these errors were encountered: