From 69fa1e0dff2d1b0bc84a37ba10937cdc8339de7e Mon Sep 17 00:00:00 2001 From: razaq Date: Thu, 27 Jul 2023 13:56:25 +0200 Subject: [PATCH] add missing inline specifier --- include/fmt/std.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/std.h b/include/fmt/std.h index 8135f757..a71a59db 100644 --- a/include/fmt/std.h +++ b/include/fmt/std.h @@ -73,7 +73,7 @@ void write_escaped_path(basic_memory_buffer& quoted, # ifdef _WIN32 template <> -auto get_path_string(const std::filesystem::path& p) { +inline auto get_path_string(const std::filesystem::path& p) { return to_utf8(p.native(), to_utf8_error_policy::replace); }