瀏覽代碼

Missing reset() method added.

main
offa 7 年之前
父節點
當前提交
6558c27cc5
共有 1 個檔案被更改,包括 6 行新增0 行删除
  1. +6
    -0
      include/unique_resource.h

+ 6
- 0
include/unique_resource.h 查看文件

@@ -23,6 +23,7 @@
#include "scope_exit.h"
#include <utility>
#include <type_traits>
#include <functional>

namespace sr
{
@@ -120,6 +121,11 @@ namespace sr
return m_value.get();
}

void reset(T& newValue) noexcept
{
m_value = std::ref(newValue);
}


private:


Loading…
取消
儲存