summaryrefslogtreecommitdiff
path: root/src/fios.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fios.h')
-rw-r--r--src/fios.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fios.h b/src/fios.h
index b1d260f84..cc6917813 100644
--- a/src/fios.h
+++ b/src/fios.h
@@ -139,7 +139,7 @@ public:
*/
inline const FiosItem *Begin() const
{
- return this->files.Begin();
+ return this->files.data();
}
/**
@@ -148,7 +148,7 @@ public:
*/
inline const FiosItem *End() const
{
- return this->files.End();
+ return this->Begin() + this->Length();
}
/**