瀏覽代碼

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…
取消
儲存