summaryrefslogtreecommitdiff
path: root/zen/scope_guard.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/scope_guard.h')
-rw-r--r--zen/scope_guard.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/scope_guard.h b/zen/scope_guard.h
index 4cc049a8..9b27eecb 100644
--- a/zen/scope_guard.h
+++ b/zen/scope_guard.h
@@ -23,7 +23,7 @@ namespace zen
Scope Exit:
ZEN_ON_SCOPE_EXIT (CleanUp());
- ZEN_ON_SCOPE_FAIL (UndoPreviousWork());
+ ZEN_ON_SCOPE_FAIL (UndoTemporaryWork());
ZEN_ON_SCOPE_SUCCESS(NotifySuccess()); */
enum class ScopeGuardRunMode
bgstack15