瀏覽代碼

Refactoring.

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

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

@@ -54,14 +54,7 @@ namespace sr

~unique_resource_t()
{
if( m_execute_on_destruction == true )
{
try
{
m_deleter(m_resource);
}
catch( ... ) { /* Empty */ }
}
invoke(invoke_it::once);
}


@@ -87,7 +80,7 @@ namespace sr

unique_resource_t& operator=(unique_resource_t&& other) noexcept
{
m_deleter(m_resource);
invoke(invoke_it::once);
m_resource = std::move(other.m_resource);
m_deleter = std::move(other.m_deleter);
m_execute_on_destruction = other.m_execute_on_destruction;

Loading…
取消
儲存