17 struct std::formatter<std::wstring> : std::formatter<std::string>
20 format(std::wstring
const& wstr, std::format_context& ctx)
22 return std::formatter<std::string>::format(std::format(
"{}", Utils::StringLib::To<std::string>(wstr)), ctx);
33 struct std::formatter<
Err, char> : std::formatter<std::string, char>
36 format(
Err const& err, std::format_context& ctx)
45 return std::formatter<std::string, char>::format(os.str().c_str(), ctx);
Logging header: Wide string support on linux is at best flaky, so only Windows version gets both stri...
Templated return value for failure cases.
Definition: Error.hpp:162