瀏覽代碼

Noexcept added (#101).

main
offa 7 年之前
父節點
當前提交
41b2fdeead
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      include/unique_resource.h

+ 2
- 1
include/unique_resource.h 查看文件

@@ -147,7 +147,8 @@ namespace sr
&& (std::is_nothrow_move_assignable_v<DD>
|| std::is_nothrow_copy_assignable_v<DD>), int> = 0
>
unique_resource& operator=(unique_resource&& other)
unique_resource& operator=(unique_resource&& other) noexcept(std::is_nothrow_assignable_v<R&, R>
&& std::is_nothrow_assignable_v<D&, D>)
{
if( this != &other )
{

Loading…
取消
儲存