summaryrefslogtreecommitdiff
path: root/framework/inc/threadhelp/transactionguard.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/inc/threadhelp/transactionguard.hxx')
-rw-r--r--framework/inc/threadhelp/transactionguard.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/inc/threadhelp/transactionguard.hxx b/framework/inc/threadhelp/transactionguard.hxx
index 033f61b940f6..2c4366cdee23 100644
--- a/framework/inc/threadhelp/transactionguard.hxx
+++ b/framework/inc/threadhelp/transactionguard.hxx
@@ -27,13 +27,13 @@ namespace framework{
class TransactionGuard
{
public:
- inline TransactionGuard( TransactionManager& rManager, EExceptionMode eMode )
+ TransactionGuard( TransactionManager& rManager, EExceptionMode eMode )
: m_pManager( &rManager )
{
m_pManager->registerTransaction( eMode );
}
- inline ~TransactionGuard()
+ ~TransactionGuard()
{
m_pManager->unregisterTransaction();
}