diff --git a/src/OrcLib/Text/Fmt/std_filesystem.h b/src/OrcLib/Text/Fmt/std_filesystem.h index 15a64c8e..fee2f966 100644 --- a/src/OrcLib/Text/Fmt/std_filesystem.h +++ b/src/OrcLib/Text/Fmt/std_filesystem.h @@ -17,7 +17,7 @@ template <> struct fmt::formatter : public fmt::formatter { template - auto format(const std::filesystem::path& path, FormatContext& ctx) + auto format(const std::filesystem::path& path, FormatContext& ctx) const { return fmt::formatter::format(path.string(), ctx); } @@ -27,7 +27,7 @@ template <> struct fmt::formatter : public fmt::formatter { template - auto format(const std::filesystem::path& path, FormatContext& ctx) + auto format(const std::filesystem::path& path, FormatContext& ctx) const { return fmt::formatter::format(path.wstring(), ctx); }