- [FIX] conversió explicita a string, perque Windows es subnormal

This commit is contained in:
2026-05-01 11:17:42 +02:00
parent 598a6ad6ab
commit 30743a4e4c

View File

@@ -381,7 +381,7 @@ int main(int argc, char *argv[])
std::string source_file = entry.path().string(); std::string source_file = entry.path().string();
std::string ext = getFileExtension(source_file); 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); MaybeRecompile(source_file);
} }
} }