Skip to content

Commit 348ef5b

Browse files
committed
Updated async_mpi to use cpp20 concepts
1 parent 8075e28 commit 348ef5b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

libs/core/async_mpi/include/hpx/async_mpi/transform_mpi.hpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -278,9 +278,8 @@ namespace hpx { namespace mpi { namespace experimental {
278278
: hpx::functional::detail::tag_fallback<transform_mpi_t>
279279
{
280280
private:
281-
template <typename Sender, typename F,
282-
HPX_CONCEPT_REQUIRES_(
283-
hpx::execution::experimental::is_sender_v<Sender>)>
281+
template <typename Sender, typename F>
282+
requires (hpx::execution::experimental::is_sender_v<Sender>)
284283
friend constexpr HPX_FORCEINLINE auto tag_fallback_invoke(
285284
transform_mpi_t, Sender&& s, F&& f)
286285
{

0 commit comments

Comments
 (0)