Explorar el Código

Missing reset() method added.

main
offa hace 7 años
padre
commit
6558c27cc5
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  1. +6
    -0
      include/unique_resource.h

+ 6
- 0
include/unique_resource.h Ver fichero

@@ -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:


Cargando…
Cancelar
Guardar