Преглед на файлове

Using 'if constexpr'.

main
offa преди 7 години
родител
ревизия
5fee7b08a2
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. +2
    -2
      include/unique_resource.h

+ 2
- 2
include/unique_resource.h Целия файл

@@ -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()));

Loading…
Отказ
Запис