소스 검색

Implementation of the remove_cvref Trait (P0550R2) added (#106).

main
offa 7 년 전
부모
커밋
1395f533c0
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. +8
    -0
      include/detail/scope_guard_base.h

+ 8
- 0
include/detail/scope_guard_base.h 파일 보기

@@ -25,6 +25,14 @@

namespace sr::detail
{
// From P0550
template<class T>
using remove_cvref = std::remove_cv_t<std::remove_reference_t<T>>;

template<class T>
using remove_cvref_t = typename remove_cvref<T>::type;



template<class F, class S>
struct is_noexcept_dtor

Loading…
취소
저장