summaryrefslogtreecommitdiff
path: root/include/osl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-05 08:16:59 +0200
committerNoel Grandin <noel@peralex.com>2014-06-05 08:17:52 +0200
commit0e507ae031768deceab236a41d1bbe9fb5123cea (patch)
tree34cc1626f1e8fa6d50d6edd88045be6252150f19 /include/osl
parentdb246b491c1639942d9f952658d33974e9b06201 (diff)
various: remove SAL_THROW macro
Change-Id: I9464179a736b91f5bc32eb5e5e89b3b4e3da3494
Diffstat (limited to 'include/osl')
-rw-r--r--include/osl/thread.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/osl/thread.hxx b/include/osl/thread.hxx
index 398eca170f2f..e5331efc5291 100644
--- a/include/osl/thread.hxx
+++ b/include/osl/thread.hxx
@@ -53,13 +53,13 @@ class Thread
Thread& operator= ( const Thread& );
public:
// these are here to force memory de/allocation to sal lib.
- 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 delete( void * pMem ) SAL_THROW (())
+ inline static void SAL_CALL operator delete( void * pMem )
{ ::rtl_freeMemory( pMem ); }
- inline static void * SAL_CALL operator new( size_t, void * pMem ) SAL_THROW (())
+ inline static void * SAL_CALL operator new( size_t, void * pMem )
{ return pMem; }
- inline static void SAL_CALL operator delete( void *, void * ) SAL_THROW (())
+ inline static void SAL_CALL operator delete( void *, void * )
{}
Thread(): m_hThread(0){}