瀏覽代碼

FIX: C++17 is_swappable import from stl

doc
父節點
當前提交
325ac9a5b2
共有 1 個檔案被更改,包括 4 行新增2 行删除
  1. +4
    -2
      include/utl/concepts/stl.h

+ 4
- 2
include/utl/concepts/stl.h 查看文件

@@ -404,8 +404,10 @@ namespace utl {
using type = decltype(check<_Tp, _Up>(0));
};
#else
using is_swappable = std::is_swappable;
using is_swappable_with = std::is_swappable_with;
template<typename Tp>
using is_swappable = std::is_swappable<Tp>;
template<typename T, typename U>
using is_swappable_with = std::is_swappable_with<T, U>;
#endif
// != std:: on CommonReference


Loading…
取消
儲存