From fb8d9779580815337ea5a3ccccee57c679ca9853 Mon Sep 17 00:00:00 2001 From: Raimon Zamora Date: Mon, 4 May 2026 12:47:12 +0200 Subject: [PATCH] =?UTF-8?q?-=20[FIX]=20Conversi=C3=B3=20expl=C3=ADcita=20d?= =?UTF-8?q?e=20std::filesystem::path=20a=20std::string=20per=20a=20que=20n?= =?UTF-8?q?o=20es=20queixe=20Windows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 5fb59f6..dbde735 100644 --- a/main.cpp +++ b/main.cpp @@ -379,7 +379,7 @@ void process_includes(int index, std::string& file, bool is_cpp = false) void process_cpp(std::string& file) { - std::string absolute_path = std::filesystem::weakly_canonical(file); + std::string absolute_path = std::filesystem::weakly_canonical(file).string(); //std::cout << absolute_path << std::endl; int index = add_cpp(absolute_path);