We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89ac7d5 commit 7258309Copy full SHA for 7258309
src/engine.cpp
@@ -14,7 +14,7 @@ using namespace Util;
14
std::vector<std::string> Util::getFilesInDirectory(const std::string& dirPath) {
15
std::vector<std::string> filepaths;
16
for (const auto& entry: std::filesystem::directory_iterator(dirPath)) {
17
- filepaths.emplace_back(entry.path());
+ filepaths.emplace_back(entry.path().string());
18
}
19
return filepaths;
20
0 commit comments