summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/TKeyValue.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/TKeyValue.hxx')
-rw-r--r--connectivity/source/inc/TKeyValue.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/connectivity/source/inc/TKeyValue.hxx b/connectivity/source/inc/TKeyValue.hxx
index 6d7f1b336d5f..0a9d833c6f5e 100644
--- a/connectivity/source/inc/TKeyValue.hxx
+++ b/connectivity/source/inc/TKeyValue.hxx
@@ -36,19 +36,19 @@ namespace connectivity
~OKeyValue();
- inline static void * SAL_CALL operator new( size_t nSize )
+ static void * SAL_CALL operator new( size_t nSize )
{ return ::rtl_allocateMemory( nSize ); }
- inline static void * SAL_CALL operator new( size_t,void* _pHint )
+ static void * SAL_CALL operator new( size_t,void* _pHint )
{ return _pHint; }
- inline static void SAL_CALL operator delete( void * pMem )
+ static void SAL_CALL operator delete( void * pMem )
{ ::rtl_freeMemory( pMem ); }
- inline static void SAL_CALL operator delete( void *,void* )
+ static void SAL_CALL operator delete( void *,void* )
{ }
static OKeyValue* createKeyValue(sal_Int32 nVal);
// static OKeyValue* createEmptyKeyValue();
- inline void pushKey(const ORowSetValueDecoratorRef& _aValueRef)
+ void pushKey(const ORowSetValueDecoratorRef& _aValueRef)
{
m_aKeys.push_back(_aValueRef);
}
@@ -64,7 +64,7 @@ namespace connectivity
return m_aKeys[i]->getValue();
}
- inline sal_Int32 getValue() const { return m_nValue; }
+ sal_Int32 getValue() const { return m_nValue; }
};
}