mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 13:37:42 -05:00
sys: std::filesystem -> fs
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user