fixed linux?

This commit is contained in:
georgemoralis
2025-11-29 20:10:12 +02:00
parent 44b78612f8
commit 85d4fef6c9

View File

@@ -16,7 +16,7 @@ namespace nlohmann {
template <>
struct adl_serializer<std::filesystem::path> {
static void to_json(json& j, const std::filesystem::path& p) {
j = p.u8string();
j = p.string();
}
static void from_json(const json& j, std::filesystem::path& p) {
p = j.get<std::string>();