Explorar el Código

Using 'if constexpr'.

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

+ 2
- 2
include/unique_resource.h Ver fichero

@@ -168,12 +168,12 @@ namespace sr
{
reset();

if( std::is_nothrow_move_assignable_v<R> == true )
if constexpr( std::is_nothrow_move_assignable_v<R> == true )
{
m_deleter.reset(detail::forward_if_nothrow_move_constructible(other.m_deleter.get()));
m_resource.reset(std::forward<RR>(other.m_resource.get()));
}
else if( std::is_nothrow_move_assignable_v<D> == true )
else if constexpr( std::is_nothrow_move_assignable_v<D> == true )
{
m_resource.reset(detail::forward_if_nothrow_move_constructible(other.m_resource.get()));
m_deleter.reset(std::forward<DD>(other.m_deleter.get()));

Cargando…
Cancelar
Guardar