Ver código fonte

Helper function implemented.

main
offa 7 anos atrás
pai
commit
831c97cc89
1 arquivos alterados com 12 adições e 0 exclusões
  1. +12
    -0
      include/unique_resource.h

+ 12
- 0
include/unique_resource.h Ver arquivo

@@ -35,6 +35,18 @@ namespace sr
constexpr auto is_nothrow_move_or_copy_constructible_from_v = is_ntmocp_constructible<T, TT>::value;


template<class T,
class U = std::conditional_t<(!std::is_nothrow_move_assignable<T>::value
&& std::is_copy_assignable<T>::value),
T const &,
T &&>>
constexpr U move_assign_if_noexcept(T&& value) noexcept
{
return std::move(value);
}



template<class R, class D>
class unique_resource
{

Carregando…
Cancelar
Salvar