Explorar el Código

Implementation of make_unique_resource_checked() updated to match the

specification (#152).
main
offa hace 5 años
padre
commit
877ffdea3c
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. +1
    -2
      include/unique_resource.h

+ 1
- 2
include/unique_resource.h Ver fichero

@@ -205,10 +205,9 @@ namespace sr
noexcept(std::is_nothrow_constructible_v<std::decay_t<R>, R>
&& std::is_nothrow_constructible_v<std::decay_t<D>, D>)
{
const bool must_release{r == invalid};
unique_resource<std::decay_t<R>, std::decay_t<D>> ur{std::forward<R>(r), std::forward<D>(d)};

if( must_release == true )
if( bool(r == invalid) == true )
{
ur.release();
}

Cargando…
Cancelar
Guardar