summaryrefslogtreecommitdiff
path: root/store/source/storbase.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'store/source/storbase.cxx')
-rw-r--r--store/source/storbase.cxx33
1 files changed, 0 insertions, 33 deletions
diff --git a/store/source/storbase.cxx b/store/source/storbase.cxx
index bb2cf277fd04..7e2a8cde8699 100644
--- a/store/source/storbase.cxx
+++ b/store/source/storbase.cxx
@@ -33,39 +33,6 @@ using namespace store;
/*========================================================================
*
- * SharedCount::Allocator.
- *
- *======================================================================*/
-SharedCount::Allocator &
-SharedCount::Allocator::get()
-{
- static Allocator g_aSharedCountAllocator;
- return g_aSharedCountAllocator;
-}
-
-SharedCount::Allocator::Allocator()
-{
- m_cache = rtl_cache_create (
- "store_shared_count_cache",
- sizeof(long),
- 0, // objalign
- nullptr, // constructor
- nullptr, // destructor
- nullptr, // reclaim
- nullptr, // userarg
- nullptr, // default source
- 0 // flags
- );
-}
-
-SharedCount::Allocator::~Allocator()
-{
- rtl_cache_destroy (m_cache);
- m_cache = nullptr;
-}
-
-/*========================================================================
- *
* PageData::Allocator_Impl (default allocator).
*
*======================================================================*/