diff --git a/src/common/fs/fs.h b/src/common/fs/fs.h index ce3eb309a..058cd498b 100644 --- a/src/common/fs/fs.h +++ b/src/common/fs/fs.h @@ -399,6 +399,10 @@ void IterateDirEntriesRecursively(const std::filesystem::path& path, const DirEntryCallable& callback, DirEntryFilter filter = DirEntryFilter::All); +void IterateDirEntriesRecursivelyInternal(const std::filesystem::path& path, + const DirEntryCallable& callback, + DirEntryFilter filter, int depth); + #ifdef _WIN32 template void IterateDirEntriesRecursively(const Path& path, const DirEntryCallable& callback,