mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Fix a whole pile of missing 'override' keywords.
This commit is contained in:
@@ -113,12 +113,12 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
uint32_t capabilities() const
|
||||
uint32_t capabilities() const override
|
||||
{
|
||||
return OP_GETFSDATA | OP_LIST | OP_GETFILE | OP_GETDIRENT;
|
||||
}
|
||||
|
||||
std::map<std::string, std::string> getMetadata()
|
||||
std::map<std::string, std::string> getMetadata() override
|
||||
{
|
||||
AcornDfsDirectory dir(this);
|
||||
|
||||
@@ -130,12 +130,12 @@ public:
|
||||
return attributes;
|
||||
}
|
||||
|
||||
FilesystemStatus check()
|
||||
FilesystemStatus check() override
|
||||
{
|
||||
return FS_OK;
|
||||
}
|
||||
|
||||
std::vector<std::shared_ptr<Dirent>> list(const Path& path)
|
||||
std::vector<std::shared_ptr<Dirent>> list(const Path& path) override
|
||||
{
|
||||
if (!path.empty())
|
||||
throw FileNotFoundException();
|
||||
@@ -148,7 +148,7 @@ public:
|
||||
return result;
|
||||
}
|
||||
|
||||
Bytes getFile(const Path& path)
|
||||
Bytes getFile(const Path& path) override
|
||||
{
|
||||
AcornDfsDirectory dir(this);
|
||||
auto dirent = dir.findFile(path);
|
||||
@@ -166,7 +166,7 @@ public:
|
||||
return data;
|
||||
}
|
||||
|
||||
std::shared_ptr<Dirent> getDirent(const Path& path)
|
||||
std::shared_ptr<Dirent> getDirent(const Path& path) override
|
||||
{
|
||||
AcornDfsDirectory dir(this);
|
||||
return dir.findFile(path);
|
||||
|
||||
@@ -141,7 +141,7 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
uint32_t capabilities() const
|
||||
uint32_t capabilities() const override
|
||||
{
|
||||
return OP_GETFSDATA | OP_LIST | OP_GETFILE | OP_GETDIRENT;
|
||||
}
|
||||
|
||||
@@ -101,7 +101,7 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
uint32_t capabilities() const
|
||||
uint32_t capabilities() const override
|
||||
{
|
||||
return OP_GETFSDATA | OP_LIST | OP_GETFILE | OP_GETDIRENT;
|
||||
}
|
||||
|
||||
@@ -189,7 +189,7 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
uint32_t capabilities() const
|
||||
uint32_t capabilities() const override
|
||||
{
|
||||
return OP_GETFSDATA | OP_LIST | OP_GETFILE | OP_GETDIRENT;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user