Browse Source

Move ctor made noexcept (fixes #8).

main
offa 7 years ago
parent
commit
1aeaf4ed05
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      include/scope_guard.h

+ 2
- 2
include/scope_guard.h View File

@@ -16,8 +16,8 @@ namespace sg
{
}

scope_guard_t(scope_guard_t&& other) : m_deleter(std::move(other.m_deleter)),
m_execute_on_destruction(other.m_execute_on_destruction)
scope_guard_t(scope_guard_t&& other) noexcept : m_deleter(std::move(other.m_deleter)),
m_execute_on_destruction(other.m_execute_on_destruction)
{
other.release();
}

Loading…
Cancel
Save