[Libreoffice-commits] core.git: vcl/inc

Stephan Bergmann sbergman at redhat.com
Tue Jan 23 21:29:31 UTC 2018


 vcl/inc/salusereventlist.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 77a535285f0fd5f2464430abdc67cf99be024868
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Jan 23 12:17:17 2018 +0100

    -Werror=ignored-qualifiers (upcoming GCC 8)
    
    Change-Id: Ibcbfd951d2a7c7862fbc7e6b17c89344ae5bf930
    Reviewed-on: https://gerrit.libreoffice.org/48399
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/vcl/inc/salusereventlist.hxx b/vcl/inc/salusereventlist.hxx
index 52a195a68f82..92aaada771b3 100644
--- a/vcl/inc/salusereventlist.hxx
+++ b/vcl/inc/salusereventlist.hxx
@@ -36,7 +36,7 @@ enum class SalEvent;
 struct SalFrameHash : public std::hash<sal_IntPtr>
 {
     size_t operator()(const SalFrame* frame) const
-        { return std::hash<sal_IntPtr>::operator()( reinterpret_cast<const sal_IntPtr>(frame) ); }
+        { return std::hash<sal_IntPtr>::operator()( reinterpret_cast<sal_IntPtr>(frame) ); }
 };
 
 typedef std::unordered_set< SalFrame*, SalFrameHash > SalFrameSet;


More information about the Libreoffice-commits mailing list