diff options
Diffstat (limited to 'cppuhelper/source/component_context.cxx')
-rw-r--r-- | cppuhelper/source/component_context.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/source/component_context.cxx b/cppuhelper/source/component_context.cxx index f6b7aa0cf0da..62839c64d491 100644 --- a/cppuhelper/source/component_context.cxx +++ b/cppuhelper/source/component_context.cxx @@ -59,7 +59,7 @@ using rtl::OUStringBuffer; namespace cppu { -static inline void try_dispose( Reference< XInterface > const & xInstance ) +static void try_dispose( Reference< XInterface > const & xInstance ) { Reference< lang::XComponent > xComp( xInstance, UNO_QUERY ); if (xComp.is()) @@ -68,7 +68,7 @@ static inline void try_dispose( Reference< XInterface > const & xInstance ) } } -static inline void try_dispose( Reference< lang::XComponent > const & xComp ) +static void try_dispose( Reference< lang::XComponent > const & xComp ) { if (xComp.is()) { |