Explorar el Código

Noexcept added.

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

+ 1
- 1
include/unique_resource.h Ver fichero

@@ -48,7 +48,7 @@ namespace sr


template<class T, class U = std::conditional_t<std::is_nothrow_move_constructible<T>::value, T&&, const T&>>
constexpr U forward_if_nothrow_move_constructible(T&& value)
constexpr U forward_if_nothrow_move_constructible(T&& value) noexcept
{
return std::forward<T>(value);
}

Cargando…
Cancelar
Guardar