Przeglądaj źródła

Move ctor made noexcept (fixes #8).

main
offa 7 lat temu
rodzic
commit
1aeaf4ed05
1 zmienionych plików z 2 dodań i 2 usunięć
  1. +2
    -2
      include/scope_guard.h

+ 2
- 2
include/scope_guard.h Wyświetl plik

@@ -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();
}

Ładowanie…
Anuluj
Zapisz