- [FIX] conversió explicita a string, perque Windows es subnormal
This commit is contained in:
2
main.cpp
2
main.cpp
@@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user