From d4df6c25c99b3f753c7082f5522d98abe572ce84 Mon Sep 17 00:00:00 2001 From: Vincent Payet Date: Tue, 15 Oct 2024 12:12:03 +0200 Subject: [PATCH] windows compile --- src/libs/antares/writer/in_memory_writer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/antares/writer/in_memory_writer.cpp b/src/libs/antares/writer/in_memory_writer.cpp index 7df8059b0e..2c5e282fcb 100644 --- a/src/libs/antares/writer/in_memory_writer.cpp +++ b/src/libs/antares/writer/in_memory_writer.cpp @@ -77,7 +77,7 @@ void InMemoryWriter::addEntryFromBuffer(const std::string& entryPath, Yuni::Clob void InMemoryWriter::addEntryFromBuffer(const fs::path& entryPath, std::string& entryContent) { - addToMap(pEntries, entryPath, entryContent, pMapMutex, pDurationCollector); + addToMap(pEntries, entryPath.string(), entryContent, pMapMutex, pDurationCollector); } void InMemoryWriter::addEntryFromFile(const fs::path& entryPath, const fs::path& filePath)