From 30743a4e4c48a087950e43bd15f149e404f39384 Mon Sep 17 00:00:00 2001 From: Raimon Zamora Date: Fri, 1 May 2026 11:17:42 +0200 Subject: [PATCH] =?UTF-8?q?-=20[FIX]=20conversi=C3=B3=20explicita=20a=20st?= =?UTF-8?q?ring,=20perque=20Windows=20es=20subnormal?= 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 282ac63..13d4de4 100644 --- a/main.cpp +++ b/main.cpp @@ -381,7 +381,7 @@ int main(int argc, char *argv[]) std::string source_file = entry.path().string(); std::string ext = getFileExtension(source_file); - if ((ext == "cpp" || ext == "c") && !contains(exclude, entry.path().filename())) { + if ((ext == "cpp" || ext == "c") && !contains(exclude, entry.path().filename().string())) { MaybeRecompile(source_file); } }