소스 검색

SFINAE corrected as specified in P0052.

main
offa 7 년 전
부모
커밋
97cd340bac
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      include/unique_resource.h

+ 2
- 2
include/unique_resource.h 파일 보기

@@ -163,9 +163,9 @@ namespace sr
}

template<class RR = R,
std::enable_if_t<std::is_pointer<RR>::value && std::is_nothrow_copy_constructible<RR>::value
std::enable_if_t<std::is_pointer<RR>::value
&& ( std::is_class<std::remove_pointer_t<RR>>::value
|| std::is_union<std::remove_pointer_t<RR>>::value ), int> = 0
|| std::is_union<std::remove_pointer_t<RR>>::value ), int> = 0
>
RR operator->() const noexcept
{

Loading…
취소
저장