summaryrefslogtreecommitdiff
path: root/include/connectivity/FValue.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/connectivity/FValue.hxx')
-rw-r--r--include/connectivity/FValue.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/connectivity/FValue.hxx b/include/connectivity/FValue.hxx
index 33279f12757e..241f14ce0b0a 100644
--- a/include/connectivity/FValue.hxx
+++ b/include/connectivity/FValue.hxx
@@ -278,13 +278,13 @@ namespace connectivity
free();
}
- 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,void* _pHint )
+ static void * operator new( size_t,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 *,void* )
+ static void operator delete( void *,void* )
{ }
ORowSetValue& operator=(const ORowSetValue& _rRH);