瀏覽代碼

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)

Loading…
取消
儲存