diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-07-31 18:27:56 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-07-31 21:24:24 +0200 |
commit | 819fd24487aa120e6f0df1488d1afef7621252cb (patch) | |
tree | 5d49646c60b8e220ee272c3fb4b277a69a467010 /comphelper | |
parent | a713fb5e3ac8b521abd441f040853f439f1a3f7c (diff) |
comphelper: replace boost::function with std::function
Change-Id: I042c97d8472c3afceffba36808687f382571e6c2
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/scopeguard.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/misc/scopeguard.cxx b/comphelper/source/misc/scopeguard.cxx index 89f3924498df..f159b293ed3b 100644 --- a/comphelper/source/misc/scopeguard.cxx +++ b/comphelper/source/misc/scopeguard.cxx @@ -52,7 +52,7 @@ ScopeGuard::~ScopeGuard() void ScopeGuard::dismiss() { - m_func.clear(); + m_func = nullptr; } FlagGuard::~FlagGuard() |