LibCore: Make DirIterator take String instead of StringView

This commit is contained in:
Andreas Kling 2021-04-17 00:48:07 +02:00
commit 510aad6515
Notes: sideshowbarker 2024-07-18 19:32:34 +09:00
2 changed files with 4 additions and 4 deletions

View file

@ -40,7 +40,7 @@ public:
SkipParentAndBaseDir = 0x2,
};
DirIterator(const StringView& path, Flags = Flags::NoFlags);
explicit DirIterator(String path, Flags = Flags::NoFlags);
~DirIterator();
bool has_error() const { return m_error != 0; }