offa 8 лет назад
Родитель
Сommit
23dd400d91
1 измененных файлов: 2 добавлений и 2 удалений
  1. +2
    -2
      include/unique_resource.h

+ 2
- 2
include/unique_resource.h Просмотреть файл



template<class T, class TT> template<class T, class TT>
using is_ntmocp_constructible = std::conditional_t<std::is_reference<TT>::value || !std::is_nothrow_move_constructible<TT>::value, using is_ntmocp_constructible = std::conditional_t<std::is_reference<TT>::value || !std::is_nothrow_move_constructible<TT>::value,
typename std::is_constructible<T, TT const &>::type,
typename std::is_constructible<T, const TT&>::type,
typename std::is_constructible<T, TT>::type>; typename std::is_constructible<T, TT>::type>;


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

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