diff options
author | Arnaud Versini <Arnaud.Versini@libreoffice.org> | 2017-04-02 14:40:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-03 06:29:08 +0000 |
commit | d7869e561100efee7e4bd747934d6757e67dc0d9 (patch) | |
tree | 6c26cc184ce2cc20ab14fc665f79a44da3db1bd3 | |
parent | 4809096a1f60d9ef57a494ba6ae8fb8541361572 (diff) |
Avoid redundant inline warning in swcache
Change-Id: Ia30d9f406769cab219418d4624e8547a036c4f08
Reviewed-on: https://gerrit.libreoffice.org/36022
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | sw/source/core/inc/swcache.hxx | 4 |
1 files 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 }; |