sw/source/core/inc/swcache.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit d7869e561100efee7e4bd747934d6757e67dc0d9 Author: Arnaud Versini <[email protected]> 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 <[email protected]> Reviewed-by: Noel Grandin <[email protected]> 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 }; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
