summaryrefslogtreecommitdiff
path: root/include/cppuhelper/typeprovider.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/cppuhelper/typeprovider.hxx')
-rw-r--r--include/cppuhelper/typeprovider.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/include/cppuhelper/typeprovider.hxx b/include/cppuhelper/typeprovider.hxx
index e90ea3c00236..912f90865e04 100644
--- a/include/cppuhelper/typeprovider.hxx
+++ b/include/cppuhelper/typeprovider.hxx
@@ -41,17 +41,17 @@ class SAL_WARN_UNUSED CPPUHELPER_DLLPUBLIC OTypeCollection
public:
/// @cond INTERNAL
// these are here to force memory de/allocation to sal lib.
- 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 delete( void * pMem )
+ static void SAL_CALL operator delete( void * pMem )
{ ::rtl_freeMemory( pMem ); }
- inline static void * SAL_CALL operator new( size_t, void * pMem )
+ static void * SAL_CALL operator new( size_t, void * pMem )
{ return pMem; }
- inline static void SAL_CALL operator delete( void *, void * )
+ static void SAL_CALL operator delete( void *, void * )
{}
/// @endcond
- inline OTypeCollection( const OTypeCollection & rCollection )
+ OTypeCollection( const OTypeCollection & rCollection )
: _aTypes( rCollection._aTypes )
{}
OTypeCollection(
@@ -177,13 +177,13 @@ public:
/// @cond INTERNAL
// these are here to force memory de/allocation to sal lib.
- 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 delete( void * pMem )
+ static void SAL_CALL operator delete( void * pMem )
{ ::rtl_freeMemory( pMem ); }
- inline static void * SAL_CALL operator new( size_t, void * pMem )
+ static void * SAL_CALL operator new( size_t, void * pMem )
{ return pMem; }
- inline static void SAL_CALL operator delete( void *, void * )
+ static void SAL_CALL operator delete( void *, void * )
{}
~OImplementationId();
@@ -194,7 +194,7 @@ public:
@param bUseEthernetAddress whether an ethernet mac address should be taken into account
*/
- inline OImplementationId( bool bUseEthernetAddress = true )
+ OImplementationId( bool bUseEthernetAddress = true )
: _pSeq( NULL )
, _bUseEthernetAddress( bUseEthernetAddress )
{}
@@ -202,11 +202,11 @@ public:
@param rSeq implementation id
*/
- inline OImplementationId( const css::uno::Sequence< sal_Int8 > & rSeq )
+ OImplementationId( const css::uno::Sequence< sal_Int8 > & rSeq )
: _pSeq( new css::uno::Sequence< sal_Int8 >( rSeq ) )
, _bUseEthernetAddress( false )
{}
- inline OImplementationId( const OImplementationId & rId )
+ OImplementationId( const OImplementationId & rId )
: _pSeq( new css::uno::Sequence< sal_Int8 >( rId.getImplementationId() ) )
, _bUseEthernetAddress( false )
{}