summaryrefslogtreecommitdiff
path: root/include/comphelper/accessiblecontexthelper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/comphelper/accessiblecontexthelper.hxx')
-rw-r--r--include/comphelper/accessiblecontexthelper.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/comphelper/accessiblecontexthelper.hxx b/include/comphelper/accessiblecontexthelper.hxx
index 504afb9dd59a..7163817280a3 100644
--- a/include/comphelper/accessiblecontexthelper.hxx
+++ b/include/comphelper/accessiblecontexthelper.hxx
@@ -57,14 +57,14 @@ namespace comphelper
{
IMutex* m_pMutex;
public:
- inline OMutexGuard( IMutex* _pMutex )
+ OMutexGuard( IMutex* _pMutex )
:m_pMutex( _pMutex )
{
if ( m_pMutex )
m_pMutex->acquire();
}
- inline ~OMutexGuard( )
+ ~OMutexGuard( )
{
if ( m_pMutex )
m_pMutex->release();