summaryrefslogtreecommitdiff
path: root/store/source/storbase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'store/source/storbase.hxx')
-rw-r--r--store/source/storbase.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/store/source/storbase.hxx b/store/source/storbase.hxx
index 042a467db1b5..accfdf7d73f9 100644
--- a/store/source/storbase.hxx
+++ b/store/source/storbase.hxx
@@ -529,11 +529,11 @@ public:
*/
static void * operator new (size_t n)
{
- return rtl_allocateMemory (sal_uInt32(n));
+ return std::malloc(sal_uInt32(n));
}
static void operator delete (void * p)
{
- rtl_freeMemory (p);
+ std::free (p);
}
/** State.