From d7869e561100efee7e4bd747934d6757e67dc0d9 Mon Sep 17 00:00:00 2001 From: Arnaud Versini Date: Sun, 2 Apr 2017 14:40:19 +0200 Subject: [PATCH] Avoid redundant inline warning in swcache Change-Id: Ia30d9f406769cab219418d4624e8547a036c4f08 Reviewed-on: https://gerrit.libreoffice.org/36022 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sw/source/core/inc/swcache.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 };