Skip to content

Commit 7258309

Browse files
committed
Minor fix for windows
1 parent 89ac7d5 commit 7258309

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/engine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ using namespace Util;
1414
std::vector<std::string> Util::getFilesInDirectory(const std::string& dirPath) {
1515
std::vector<std::string> filepaths;
1616
for (const auto& entry: std::filesystem::directory_iterator(dirPath)) {
17-
filepaths.emplace_back(entry.path());
17+
filepaths.emplace_back(entry.path().string());
1818
}
1919
return filepaths;
2020
}

0 commit comments

Comments
 (0)