summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/file/fcomp.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/file/fcomp.hxx')
-rw-r--r--connectivity/source/inc/file/fcomp.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/connectivity/source/inc/file/fcomp.hxx b/connectivity/source/inc/file/fcomp.hxx
index aa04fb54e1bd..97c58a1184be 100644
--- a/connectivity/source/inc/file/fcomp.hxx
+++ b/connectivity/source/inc/file/fcomp.hxx
@@ -49,13 +49,13 @@ namespace connectivity
virtual ~OPredicateCompiler() override;
- 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 /*nSize*/,void* _pHint )
+ static void * SAL_CALL operator new( size_t /*nSize*/,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 * /*pMem*/,void* /*_pHint*/ )
+ static void SAL_CALL operator delete( void * /*pMem*/,void* /*_pHint*/ )
{ }
void dispose();
@@ -105,12 +105,12 @@ namespace connectivity
bool evaluate(OCodeList& rCodeList);
void evaluateSelection(OCodeList& rCodeList,ORowSetValueDecoratorRef& _rVal);
- inline bool start()
+ bool start()
{
return evaluate(m_rCompiler->m_aCodeList);
}
- inline void startSelection(ORowSetValueDecoratorRef& _rVal)
+ void startSelection(ORowSetValueDecoratorRef& _rVal)
{
evaluateSelection(m_rCompiler->m_aCodeList,_rVal);
}