Review: use to_ascii instead

This commit is contained in:
Hans-Martin B. Jensen 2024-01-13 16:36:32 +01:00
parent 5d591a2899
commit 9fca1ec086

View File

@ -120,7 +120,7 @@ template <typename Char> struct formatter<std::filesystem::path, Char> {
format_specs<Char> specs_; format_specs<Char> specs_;
detail::arg_ref<Char> width_ref_; detail::arg_ref<Char> width_ref_;
bool debug_ = false; bool debug_ = false;
Char path_type_ = 0; char path_type_ = 0;
public: public:
FMT_CONSTEXPR void set_debug_format(bool set = true) { debug_ = set; } FMT_CONSTEXPR void set_debug_format(bool set = true) { debug_ = set; }
@ -137,7 +137,7 @@ template <typename Char> struct formatter<std::filesystem::path, Char> {
debug_ = true; debug_ = true;
++it; ++it;
} }
if (it != end && (*it == 'g')) path_type_ = *it++; if (it != end && (*it == 'g')) path_type_ = detail::to_ascii(*it++);
return it; return it;
} }