namespace std {
template<class charT> struct formatter<filesystem::path, charT> {
constexpr void set_debug_format();
constexpr typename basic_format_parse_context<charT>::iterator
parse(basic_format_parse_context<charT>& ctx);
template<class FormatContext>
typename FormatContext::iterator
format(const filesystem::path& path, FormatContext& ctx) const;
};
}