We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
stdexec::
1 parent 83bc2c2 commit c27823aCopy full SHA for c27823a
include/stdexec/__detail/__concepts.hpp
@@ -277,8 +277,8 @@ namespace stdexec {
277
requires(std::remove_cvref_t<_Alloc> __al, std::size_t __n) {
278
{
279
__al.allocate(__n)
280
- } -> std::same_as<std::add_pointer_t<typename std::remove_cvref_t<_Alloc>::value_type>>;
+ } -> same_as<std::add_pointer_t<typename std::remove_cvref_t<_Alloc>::value_type>>;
281
__al.deallocate(__al.allocate(__n), __n);
282
- } && std::copy_constructible<std::remove_cvref_t<_Alloc>>
283
- && std::equality_comparable<std::remove_cvref_t<_Alloc>>;
+ } && copy_constructible<std::remove_cvref_t<_Alloc>>
+ && equality_comparable<std::remove_cvref_t<_Alloc>>;
284
} // namespace stdexec
0 commit comments