ソースを参照

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

読み込み中…
キャンセル
保存