[Libreoffice-commits] core.git: sw/source

Arnaud Versini Arnaud.Versini at libreoffice.org
Mon Apr 3 06:29:37 UTC 2017


 sw/source/core/inc/swcache.hxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit d7869e561100efee7e4bd747934d6757e67dc0d9
Author: Arnaud Versini <Arnaud.Versini at libreoffice.org>
Date:   Sun Apr 2 14:40:19 2017 +0200

    Avoid redundant inline warning in swcache
    
    Change-Id: Ia30d9f406769cab219418d4624e8547a036c4f08
    Reviewed-on: https://gerrit.libreoffice.org/36022
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/sw/source/core/inc/swcache.hxx b/sw/source/core/inc/swcache.hxx
index 5e6a81d07781..f3e1a327b22a 100644
--- a/sw/source/core/inc/swcache.hxx
+++ b/sw/source/core/inc/swcache.hxx
@@ -169,8 +169,8 @@ public:
     void Lock();
     void Unlock();
 #else
-    inline void Lock() { ++m_nLock; }
-    inline void Unlock() { --m_nLock; }
+    void Lock() { ++m_nLock; }
+    void Unlock() { --m_nLock; }
 #endif
 };
 


More information about the Libreoffice-commits mailing list