add missing inline specifier

This commit is contained in:
razaq 2023-07-27 13:56:25 +02:00
parent aecf80d304
commit 69fa1e0dff

View File

@ -73,7 +73,7 @@ void write_escaped_path(basic_memory_buffer<Char>& quoted,
# ifdef _WIN32 # ifdef _WIN32
template <> template <>
auto get_path_string<char>(const std::filesystem::path& p) { inline auto get_path_string<char>(const std::filesystem::path& p) {
return to_utf8<wchar_t>(p.native(), to_utf8_error_policy::replace); return to_utf8<wchar_t>(p.native(), to_utf8_error_policy::replace);
} }