diff options
Diffstat (limited to 'src/storage/plugins/SmbclientStorage.cxx')
-rw-r--r-- | src/storage/plugins/SmbclientStorage.cxx | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/storage/plugins/SmbclientStorage.cxx b/src/storage/plugins/SmbclientStorage.cxx index 9a181de89..6eda05073 100644 --- a/src/storage/plugins/SmbclientStorage.cxx +++ b/src/storage/plugins/SmbclientStorage.cxx @@ -43,9 +43,8 @@ public: virtual ~SmbclientDirectoryReader(); /* 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 SmbclientStorage final : public Storage { @@ -64,15 +63,15 @@ 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 const char *MapToRelativeUTF8(const char *uri_utf8) const override; + const char *MapToRelativeUTF8(const char *uri_utf8) const override; }; std::string |