aboutsummaryrefslogtreecommitdiffstats
path: root/src/fs/DirectoryReader.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/DirectoryReader.hxx')
-rw-r--r--src/fs/DirectoryReader.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fs/DirectoryReader.hxx b/src/fs/DirectoryReader.hxx
index caa1e90ec..4e4a56345 100644
--- a/src/fs/DirectoryReader.hxx
+++ b/src/fs/DirectoryReader.hxx
@@ -47,14 +47,14 @@ public:
* Destroys this instance.
*/
~DirectoryReader() {
- if (!Failed())
+ if (!HasFailed())
closedir(dirp);
}
/**
* Checks if directory failed to open.
*/
- bool Failed() const {
+ bool HasFailed() const {
return dirp == nullptr;
}
@@ -62,7 +62,7 @@ public:
* Checks if directory entry is available.
*/
bool HasEntry() const {
- assert(!Failed());
+ assert(!HasFailed());
return ent != nullptr;
}
@@ -70,7 +70,7 @@ public:
* Reads next directory entry.
*/
bool ReadEntry() {
- assert(!Failed());
+ assert(!HasFailed());
ent = readdir(dirp);
return HasEntry();
}