summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/source/component_context.cxx2
-rw-r--r--cppuhelper/source/exc_thrower.cxx2
-rw-r--r--cppuhelper/source/macro_expander.cxx2
-rw-r--r--cppuhelper/source/unourl.cxx4
4 files changed, 5 insertions, 5 deletions
diff --git a/cppuhelper/source/component_context.cxx b/cppuhelper/source/component_context.cxx
index 08e2e7ad4737..355445da3076 100644
--- a/cppuhelper/source/component_context.cxx
+++ b/cppuhelper/source/component_context.cxx
@@ -133,7 +133,7 @@ protected:
Any value;
bool lateInit;
- inline ContextEntry( Any const & value_, bool lateInit_ )
+ ContextEntry( Any const & value_, bool lateInit_ )
: value( value_ )
, lateInit( lateInit_ )
{}
diff --git a/cppuhelper/source/exc_thrower.cxx b/cppuhelper/source/exc_thrower.cxx
index 6bec68874031..a49f3aa1d52c 100644
--- a/cppuhelper/source/exc_thrower.cxx
+++ b/cppuhelper/source/exc_thrower.cxx
@@ -47,7 +47,7 @@ struct ExceptionThrower : public uno_Interface, XExceptionThrower
virtual ~ExceptionThrower() {}
- static inline Type const & getCppuType()
+ static Type const & getCppuType()
{
return cppu::UnoType<XExceptionThrower>::get();
}
diff --git a/cppuhelper/source/macro_expander.cxx b/cppuhelper/source/macro_expander.cxx
index 8180065b2207..c0b2cda55fee 100644
--- a/cppuhelper/source/macro_expander.cxx
+++ b/cppuhelper/source/macro_expander.cxx
@@ -126,7 +126,7 @@ protected:
virtual void SAL_CALL disposing() override;
public:
- inline Bootstrap_MacroExpander()
+ Bootstrap_MacroExpander()
: t_uno_impl( m_mutex )
{}
diff --git a/cppuhelper/source/unourl.cxx b/cppuhelper/source/unourl.cxx
index 8895119e45bc..c2e4266c8007 100644
--- a/cppuhelper/source/unourl.cxx
+++ b/cppuhelper/source/unourl.cxx
@@ -60,7 +60,7 @@ public:
*/
explicit inline Impl(rtl::OUString const & m_aDescriptor);
- inline Impl * clone() const { return new Impl(*this); }
+ Impl * clone() const { return new Impl(*this); }
};
inline UnoUrlDescriptor::Impl::Impl(rtl::OUString const & rDescriptor)
@@ -188,7 +188,7 @@ public:
UnoUrlDescriptor m_aProtocol;
rtl::OUString m_aObjectName;
- inline Impl * clone() const { return new Impl(*this); }
+ Impl * clone() const { return new Impl(*this); }
/** @exception rtl::MalformedUriException
*/