ソースを参照

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:


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