diff options
author | Noel Grandin <noel@peralex.com> | 2014-06-05 08:16:59 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-06-05 08:17:52 +0200 |
commit | 0e507ae031768deceab236a41d1bbe9fb5123cea (patch) | |
tree | 34cc1626f1e8fa6d50d6edd88045be6252150f19 /store/source/storbase.hxx | |
parent | db246b491c1639942d9f952658d33974e9b06201 (diff) |
various: remove SAL_THROW macro
Change-Id: I9464179a736b91f5bc32eb5e5e89b3b4e3da3494
Diffstat (limited to 'store/source/storbase.hxx')
-rw-r--r-- | store/source/storbase.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/store/source/storbase.hxx b/store/source/storbase.hxx index 1150a6bca570..1c6205c5ea44 100644 --- a/store/source/storbase.hxx +++ b/store/source/storbase.hxx @@ -827,11 +827,11 @@ class OStorePageObject public: /** Allocation. */ - static void * operator new (size_t n) SAL_THROW(()) + static void * operator new (size_t n) { return rtl_allocateMemory (sal_uInt32(n)); } - static void operator delete (void * p) SAL_THROW(()) + static void operator delete (void * p) { rtl_freeMemory (p); } |