summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/TSortIndex.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-05 08:08:35 +0200
committerNoel Grandin <noel@peralex.com>2014-06-05 08:17:47 +0200
commit11383f56fb6889a324dd74725e5092ac4ce3999d (patch)
treeb065c7f5e92e9f9abe2bde17daada01920dd63c8 /connectivity/source/inc/TSortIndex.hxx
parentda906ab93781928adc51c605825f91b16fe8dd19 (diff)
connectivity: remove SAL_THROW macro
Change-Id: Id3bbb7a0d39a41b7106303f42d55ba4968235b63
Diffstat (limited to 'connectivity/source/inc/TSortIndex.hxx')
-rw-r--r--connectivity/source/inc/TSortIndex.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/inc/TSortIndex.hxx b/connectivity/source/inc/TSortIndex.hxx
index 6caf0272ef1b..6f2acdc01f90 100644
--- a/connectivity/source/inc/TSortIndex.hxx
+++ b/connectivity/source/inc/TSortIndex.hxx
@@ -63,13 +63,13 @@ namespace connectivity
~OSortIndex();
- inline static void * SAL_CALL operator new( size_t nSize ) SAL_THROW(())
+ inline static void * SAL_CALL operator new( size_t nSize )
{ return ::rtl_allocateMemory( nSize ); }
- inline static void * SAL_CALL operator new( size_t,void* _pHint ) SAL_THROW(())
+ inline static void * SAL_CALL operator new( size_t,void* _pHint )
{ return _pHint; }
- inline static void SAL_CALL operator delete( void * pMem ) SAL_THROW(())
+ inline static void SAL_CALL operator delete( void * pMem )
{ ::rtl_freeMemory( pMem ); }
- inline static void SAL_CALL operator delete( void *,void* ) SAL_THROW(())
+ inline static void SAL_CALL operator delete( void *,void* )
{ }