Skip to content

Commit

Permalink
Update P/R for 4154 following LWG telecon
Browse files Browse the repository at this point in the history
  • Loading branch information
jwakely committed Oct 2, 2024
1 parent 4d77b11 commit 3e23292
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions xml/issue4154.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ with <code>std::forward&lt;F&gt;(f)</code>.
</superseded>

<note>2024-10-02; Jonathan provides improved wording</note>
<p>Drop preconditions as suggested on reflector.</p>

<note>2024-10-02; LWG telecon</note>
<p>
Clarify that "of type <code>decay_t&lt;F&gt;</code>"
is supposed to be specifying the type of the stored task.
</p>

</discussion>

Expand Down Expand Up @@ -90,9 +97,12 @@ Invoking a copy of `f` behaves the same as invoking `f`.
</p>
<p>
-5- <i>Effects</i>:
Constructs a new `packaged_task` object with a shared state and initializes
Constructs a new `packaged_task` object with
<ins>a stored task of type <code>decay_t&lt;F&gt;</code> and</ins>
a shared state
<ins>. Initializes</ins>
<del>and initializes</del>
the object's stored task
<ins>of type <code>decay_t&lt;F&gt;</code></ins>
with <code>std::forward&lt;F&gt;(f)</code>.
</p>
</blockquote>
Expand Down

0 comments on commit 3e23292

Please sign in to comment.