offa 7 лет назад
Родитель
Сommit
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()));

Загрузка…
Отмена
Сохранить