diff options
Diffstat (limited to 'src/common/scope_exit.h')
| -rw-r--r-- | src/common/scope_exit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/scope_exit.h b/src/common/scope_exit.h index 072ab285d..baf1f1c9e 100644 --- a/src/common/scope_exit.h +++ b/src/common/scope_exit.h | |||
| @@ -22,7 +22,7 @@ template <typename Func> | |||
| 22 | ScopeExitHelper<Func> ScopeExit(Func&& func) { | 22 | ScopeExitHelper<Func> ScopeExit(Func&& func) { |
| 23 | return ScopeExitHelper<Func>(std::move(func)); | 23 | return ScopeExitHelper<Func>(std::move(func)); |
| 24 | } | 24 | } |
| 25 | } | 25 | } // namespace detail |
| 26 | 26 | ||
| 27 | /** | 27 | /** |
| 28 | * This macro allows you to conveniently specify a block of code that will run on scope exit. Handy | 28 | * This macro allows you to conveniently specify a block of code that will run on scope exit. Handy |