summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/OTypeInfo.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/OTypeInfo.hxx')
-rw-r--r--connectivity/source/inc/OTypeInfo.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/inc/OTypeInfo.hxx b/connectivity/source/inc/OTypeInfo.hxx
index 69cb31bbc90d..002a5a7c067c 100644
--- a/connectivity/source/inc/OTypeInfo.hxx
+++ b/connectivity/source/inc/OTypeInfo.hxx
@@ -43,13 +43,13 @@ namespace connectivity
,nType( css::sdbc::DataType::OTHER)
{}
- 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*/ )
{ }
bool operator == (const OTypeInfo& lh) const { return lh.nType == nType; }