Преглед изворни кода

Move ctor made noexcept (fixes #8).

main
offa пре 7 година
родитељ
комит
1aeaf4ed05
1 измењених фајлова са 2 додато и 2 уклоњено
  1. +2
    -2
      include/scope_guard.h

+ 2
- 2
include/scope_guard.h Прегледај датотеку

@@ -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…
Откажи
Сачувај