diff options
Diffstat (limited to 'src/storage/plugins/LocalStorage.cxx')
-rw-r--r-- | src/storage/plugins/LocalStorage.cxx | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/storage/plugins/LocalStorage.cxx b/src/storage/plugins/LocalStorage.cxx index 34d11569c..b965ceea8 100644 --- a/src/storage/plugins/LocalStorage.cxx +++ b/src/storage/plugins/LocalStorage.cxx @@ -45,9 +45,8 @@ public: } /* virtual methods from class StorageDirectoryReader */ - virtual const char *Read() override; - virtual bool GetInfo(bool follow, FileInfo &info, - Error &error) override; + const char *Read() override; + bool GetInfo(bool follow, FileInfo &info, Error &error) override; }; class LocalStorage final : public Storage { @@ -62,17 +61,17 @@ public: } /* virtual methods from class Storage */ - virtual bool GetInfo(const char *uri_utf8, bool follow, FileInfo &info, - Error &error) override; + bool GetInfo(const char *uri_utf8, bool follow, FileInfo &info, + Error &error) override; - virtual StorageDirectoryReader *OpenDirectory(const char *uri_utf8, - Error &error) override; + StorageDirectoryReader *OpenDirectory(const char *uri_utf8, + Error &error) override; - virtual std::string MapUTF8(const char *uri_utf8) const override; + std::string MapUTF8(const char *uri_utf8) const override; - virtual AllocatedPath MapFS(const char *uri_utf8) const override; + AllocatedPath MapFS(const char *uri_utf8) const override; - virtual const char *MapToRelativeUTF8(const char *uri_utf8) const override; + const char *MapToRelativeUTF8(const char *uri_utf8) const override; private: AllocatedPath MapFS(const char *uri_utf8, Error &error) const; |