sys: std::filesystem -> fs

This commit is contained in:
WerWolv
2022-01-13 14:33:30 +01:00
parent 27c08c1edf
commit c88d428fb5
24 changed files with 69 additions and 63 deletions

View File

@@ -26,9 +26,9 @@ namespace hex::plugin::builtin {
this->m_filterIndices.clear();
for (auto &path : hex::getPath(ImHexPath::Constants)) {
if (!std::filesystem::exists(path)) continue;
if (!fs::exists(path)) continue;
for (auto &file : std::filesystem::directory_iterator(path)) {
for (auto &file : fs::directory_iterator(path)) {
if (!file.is_regular_file()) continue;
try {