summaryrefslogtreecommitdiff
path: root/store/source/storcach.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'store/source/storcach.hxx')
-rw-r--r--store/source/storcach.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/store/source/storcach.hxx b/store/source/storcach.hxx
index 3f781728afe9..6778fc31bb17 100644
--- a/store/source/storcach.hxx
+++ b/store/source/storcach.hxx
@@ -59,11 +59,11 @@ class PageCache :
size_t m_nHit;
size_t m_nMissed;
- static inline int hash_Impl(sal_uInt32 a, size_t s, size_t q, size_t m)
+ static int hash_Impl(sal_uInt32 a, size_t s, size_t q, size_t m)
{
return static_cast<int>((((a) + ((a) >> (s)) + ((a) >> ((s) << 1))) >> (q)) & (m));
}
- inline int hash_index_Impl (sal_uInt32 nOffset)
+ int hash_index_Impl (sal_uInt32 nOffset)
{
return hash_Impl(nOffset, m_hash_shift, m_page_shift, m_hash_size - 1);
}