summaryrefslogtreecommitdiff
path: root/store/source/storbios.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'store/source/storbios.cxx')
-rw-r--r--store/source/storbios.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/store/source/storbios.cxx b/store/source/storbios.cxx
index dab00785c285..1342abbce0a2 100644
--- a/store/source/storbios.cxx
+++ b/store/source/storbios.cxx
@@ -170,20 +170,20 @@ struct SuperBlockPage
/** Allocation.
*/
- static void * operator new (size_t n) SAL_THROW(())
+ static void * operator new (size_t n)
{
return rtl_allocateMemory (sal::static_int_cast<sal_Size>(n));
}
- static void operator delete (void * p) SAL_THROW(())
+ static void operator delete (void * p)
{
rtl_freeMemory (p);
}
- static void * operator new (SAL_UNUSED_PARAMETER size_t, sal_uInt16 nPageSize) SAL_THROW(())
+ static void * operator new (SAL_UNUSED_PARAMETER size_t, sal_uInt16 nPageSize)
{
return rtl_allocateZeroMemory (sal::static_int_cast<sal_Size>(nPageSize));
}
- static void operator delete (void * p, SAL_UNUSED_PARAMETER sal_uInt16) SAL_THROW(())
+ static void operator delete (void * p, SAL_UNUSED_PARAMETER sal_uInt16)
{
rtl_freeMemory (p);
}