Skip to content

Commit c27823a

Browse files
authored
use the stdexec:: versions of the concepts
1 parent 83bc2c2 commit c27823a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/stdexec/__detail/__concepts.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,8 @@ namespace stdexec {
277277
requires(std::remove_cvref_t<_Alloc> __al, std::size_t __n) {
278278
{
279279
__al.allocate(__n)
280-
} -> std::same_as<std::add_pointer_t<typename std::remove_cvref_t<_Alloc>::value_type>>;
280+
} -> same_as<std::add_pointer_t<typename std::remove_cvref_t<_Alloc>::value_type>>;
281281
__al.deallocate(__al.allocate(__n), __n);
282-
} && std::copy_constructible<std::remove_cvref_t<_Alloc>>
283-
&& std::equality_comparable<std::remove_cvref_t<_Alloc>>;
282+
} && copy_constructible<std::remove_cvref_t<_Alloc>>
283+
&& equality_comparable<std::remove_cvref_t<_Alloc>>;
284284
} // namespace stdexec

0 commit comments

Comments
 (0)