ソースを参照

Functionname fixed.

main
offa 7年前
コミット
67188316a3
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      include/unique_resource.h

+ 2
- 2
include/unique_resource.h ファイルの表示

@@ -65,9 +65,9 @@ namespace sr
return m_value;
}

void reset(T&& newValue) noexcept(std::is_nothrow_assignable<T, decltype(std::move_assign_if_noexcept(newValue))>::value)
void reset(T&& newValue) noexcept(std::is_nothrow_assignable<T, decltype(std::move_if_noexcept(newValue))>::value)
{
m_value = std::move_assign_if_noexcept(newValue);
m_value = std::move_if_noexcept(newValue);
}

void reset(const T& newValue) noexcept(std::is_nothrow_assignable<T, const T&>::value)

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