From 4c873c7c3864d59ecc657771d45c8bd6c2343ba4 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Tue, 24 Feb 2026 10:11:54 +0000 Subject: [PATCH] [exec.snd.expos] Fix order of make_obj_using_allocator args Fixes https://github.com/cplusplus/sender-receiver/issues/353 --- source/exec.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/exec.tex b/source/exec.tex index ddc8be2be3..514398b425 100644 --- a/source/exec.tex +++ b/source/exec.tex @@ -2117,11 +2117,11 @@ otherwise if \tcode{P} is a specialization of \exposid{product-type}, returns an object of type \tcode{P} whose elements are initialized using \begin{codeblock} -make_obj_using_allocator(std::forward_like(e), @\exposid{alloc}@) +make_obj_using_allocator(@\exposid{alloc}@, std::forward_like(e)) \end{codeblock} where \tcode{e} is the corresponding element of \tcode{obj}, \item -otherwise, returns \tcode{make_obj_using_allocator

(std::forward(obj), \exposid{alloc})}. +otherwise, returns \tcode{make_obj_using_allocator

(\exposid{alloc}, std::forward(obj))}. \end{itemize} \end{itemdescr}