diff options
author | Noel Grandin <noel@peralex.com> | 2014-06-05 08:08:35 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-06-05 08:17:47 +0200 |
commit | 11383f56fb6889a324dd74725e5092ac4ce3999d (patch) | |
tree | b065c7f5e92e9f9abe2bde17daada01920dd63c8 /connectivity/source/inc/OColumn.hxx | |
parent | da906ab93781928adc51c605825f91b16fe8dd19 (diff) |
connectivity: remove SAL_THROW macro
Change-Id: Id3bbb7a0d39a41b7106303f42d55ba4968235b63
Diffstat (limited to 'connectivity/source/inc/OColumn.hxx')
-rw-r--r-- | connectivity/source/inc/OColumn.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/inc/OColumn.hxx b/connectivity/source/inc/OColumn.hxx index cefddcd0540e..74563555a51e 100644 --- a/connectivity/source/inc/OColumn.hxx +++ b/connectivity/source/inc/OColumn.hxx @@ -115,13 +115,13 @@ namespace connectivity m_ColumnLabel = _aColumnName; } - 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* ) { } bool isAutoIncrement() const { return m_AutoIncrement; } |