[Libreoffice-commits] online.git: loolwsd/Storage.hpp

Miklos Vajna vmiklos at collabora.co.uk
Wed Mar 23 16:37:20 UTC 2016


 loolwsd/Storage.hpp |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit cd5889ee9a20f45e25c4614e5df26a960251b531
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Wed Mar 23 17:36:56 2016 +0100

    loolwsd: fix -Werror,-Winconsistent-missing-override

diff --git a/loolwsd/Storage.hpp b/loolwsd/Storage.hpp
index fbc1708..afe5408 100644
--- a/loolwsd/Storage.hpp
+++ b/loolwsd/Storage.hpp
@@ -104,7 +104,7 @@ public:
     {
     }
 
-    FileInfo getFileInfo(const Poco::URI& uri)
+    FileInfo getFileInfo(const Poco::URI& uri) override
     {
         const auto path = uri.getPath();
         Log::debug("Getting info for local uri [" + uri.toString() + "], path [" + path + "].");
@@ -187,7 +187,7 @@ public:
     {
     }
 
-    FileInfo getFileInfo(const Poco::URI& uri)
+    FileInfo getFileInfo(const Poco::URI& uri) override
     {
         Log::debug("Getting info for wopi uri [" + uri.toString() + "].");
 
@@ -322,7 +322,7 @@ public:
     {
     }
 
-    FileInfo getFileInfo(const Poco::URI& uri)
+    FileInfo getFileInfo(const Poco::URI& uri) override
     {
         Log::debug("Getting info for webdav uri [" + uri.toString() + "].");
         (void)uri;


More information about the Libreoffice-commits mailing list