summaryrefslogtreecommitdiff
path: root/include/comphelper/scopeguard.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/comphelper/scopeguard.hxx')
-rw-r--r--include/comphelper/scopeguard.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/comphelper/scopeguard.hxx b/include/comphelper/scopeguard.hxx
index 324ad6ce2090..629950ccc151 100644
--- a/include/comphelper/scopeguard.hxx
+++ b/include/comphelper/scopeguard.hxx
@@ -51,8 +51,8 @@ public:
private:
// noncopyable until we have good reasons...
- ScopeGuard(const ScopeGuard&) SAL_DELETED_FUNCTION;
- ScopeGuard& operator=(const ScopeGuard&) SAL_DELETED_FUNCTION;
+ ScopeGuard(const ScopeGuard&) = delete;
+ ScopeGuard& operator=(const ScopeGuard&) = delete;
::std::function<void ()> m_func;
exc_handling const m_excHandling;