summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/file/fcode.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/file/fcode.hxx')
-rw-r--r--connectivity/source/inc/file/fcode.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/inc/file/fcode.hxx b/connectivity/source/inc/file/fcode.hxx
index 6993a799a180..d83ede26aed0 100644
--- a/connectivity/source/inc/file/fcode.hxx
+++ b/connectivity/source/inc/file/fcode.hxx
@@ -53,13 +53,13 @@ namespace connectivity
OCode& operator=(const OCode&) = default;
OCode& operator=(OCode&&) = default;
- static void * SAL_CALL operator new( size_t nSize )
+ static void * operator new( size_t nSize )
{ return ::rtl_allocateMemory( nSize ); }
- static void * SAL_CALL operator new( size_t /*nSize*/,void* _pHint )
+ static void * operator new( size_t /*nSize*/,void* _pHint )
{ return _pHint; }
- static void SAL_CALL operator delete( void * pMem )
+ static void operator delete( void * pMem )
{ ::rtl_freeMemory( pMem ); }
- static void SAL_CALL operator delete( void * /*pMem*/,void* /*_pHint*/ )
+ static void operator delete( void * /*pMem*/,void* /*_pHint*/ )
{ }
};