浏览代码

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

正在加载...
取消
保存