Skip to content

Commit

Permalink
Automatic update from GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Dec 6, 2024
1 parent 7ca6e15 commit 64b7281
Show file tree
Hide file tree
Showing 22 changed files with 63 additions and 60 deletions.
27 changes: 14 additions & 13 deletions issue4123.html
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,9 @@ <h3 id="4123"><a href="lwg-active.html#4123">4123</a>. Container effects use "th
The complexity is linear in the number of elements inserted plus
the lesser of the distances to the beginning and end of the deque.
Inserting a single element at either the beginning or end of a deque
always takes constant time and causes
<del>a single call to a constructor of T</del>
<ins>construction of a single object of type <code class='backtick'>T</code></ins>.
always takes constant time and
<del>causes a single call to a constructor of T</del>
<ins>constructs a single object of type <code class='backtick'>T</code></ins>.
</p>
<p>
-3- <i>Remarks</i>:
Expand Down Expand Up @@ -279,9 +279,10 @@ <h3 id="4123"><a href="lwg-active.html#4123">4123</a>. Container effects use "th
<blockquote>
<p>
-1- <i>Complexity</i>:
Insertion of a single element into a list takes constant time and exactly one
Insertion of a single element into a list takes constant time and
<ins>constructs</ins> exactly one
<del>call to a constructor of <code class='backtick'>T</code></del>
<ins>object of type <code class='backtick'>T</code> is constructed</ins>
<ins>object of type <code class='backtick'>T</code></ins>.
Insertion of multiple elements into a list is linear in the number of
elements inserted and the number of
<del>calls to the copy constructor or move constructor of <code class='backtick'>T</code></del>
Expand Down Expand Up @@ -331,17 +332,17 @@ <h3 id="4123"><a href="lwg-active.html#4123">4123</a>. Container effects use "th
</p>
<p>
-10- <i>Complexity</i>:
<del>Makes only <i>N</i> calls to the copy constructor of</del>
<ins>Initializes exactly <i>N</i> objects of type</ins>
<code class='backtick'>T</code>
<del>Makes only <i>N</i> calls to the copy constructor of <code class='backtick'>T</code></del>
<ins>Initializes exactly <i>N</i> elements</ins>

(where <i>N</i> is the distance between <code class='backtick'>first</code> and <code class='backtick'>last</code>)
and no reallocations if iterators <code class='backtick'>first</code> and <code class='backtick'>last</code> are of forward,
bidirectional, or random access categories.
It <del>makes</del> <ins>initializes</ins> order
<i>N</i>
<del>calls to the copy constructor of</del>
<ins>objects of type</ins>
<code class='backtick'>T</code> and <ins>performs</ins>
<del>calls to the copy constructor of <code class='backtick'>T</code></del>
<ins>elements</ins>
and <ins>performs</ins>
order log <i>N</i> reallocations if they are just input iterators.
</p>
<pre>template&lt;<i>container-compatible-range</i>&lt;T&gt; R&gt;
Expand All @@ -358,8 +359,8 @@ <h3 id="4123"><a href="lwg-active.html#4123">4123</a>. Container effects use "th
Performs no reallocations if <code class='backtick'>R</code> models <code class='backtick'>ranges::forward_range</code> or
<code class='backtick'>ranges::sized_range</code>; otherwise, performs order log <i>N</i> reallocations
and <ins>initializes</ins> order <i>N</i>
<del>calls to the copy or move constructor of</del>
<ins>objects of type</ins> <code class='backtick'>T</code>.
<del>calls to the copy or move constructor of <code class='backtick'>T</code></del>
<ins>elements</ins>.
</p>
</blockquote>
</li>
Expand Down
29 changes: 15 additions & 14 deletions lwg-active.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
</tr>
</table>
<h1>C++ Standard Library Active Issues List (Revision D125)</h1>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p>
<p>Reference ISO/IEC IS 14882:2020(E)</p>
<p>Also see:</p>
Expand Down Expand Up @@ -62849,9 +62849,9 @@ <h3 id="4123"><a href="#4123">4123</a><sup><a href="https://cplusplus.github.io/
The complexity is linear in the number of elements inserted plus
the lesser of the distances to the beginning and end of the deque.
Inserting a single element at either the beginning or end of a deque
always takes constant time and causes
<del>a single call to a constructor of T</del>
<ins>construction of a single object of type <code class='backtick'>T</code></ins>.
always takes constant time and
<del>causes a single call to a constructor of T</del>
<ins>constructs a single object of type <code class='backtick'>T</code></ins>.
</p>
<p>
-3- <i>Remarks</i>:
Expand Down Expand Up @@ -62935,9 +62935,10 @@ <h3 id="4123"><a href="#4123">4123</a><sup><a href="https://cplusplus.github.io/
<blockquote>
<p>
-1- <i>Complexity</i>:
Insertion of a single element into a list takes constant time and exactly one
Insertion of a single element into a list takes constant time and
<ins>constructs</ins> exactly one
<del>call to a constructor of <code class='backtick'>T</code></del>
<ins>object of type <code class='backtick'>T</code> is constructed</ins>
<ins>object of type <code class='backtick'>T</code></ins>.
Insertion of multiple elements into a list is linear in the number of
elements inserted and the number of
<del>calls to the copy constructor or move constructor of <code class='backtick'>T</code></del>
Expand Down Expand Up @@ -62987,17 +62988,17 @@ <h3 id="4123"><a href="#4123">4123</a><sup><a href="https://cplusplus.github.io/
</p>
<p>
-10- <i>Complexity</i>:
<del>Makes only <i>N</i> calls to the copy constructor of</del>
<ins>Initializes exactly <i>N</i> objects of type</ins>
<code class='backtick'>T</code>
<del>Makes only <i>N</i> calls to the copy constructor of <code class='backtick'>T</code></del>
<ins>Initializes exactly <i>N</i> elements</ins>

(where <i>N</i> is the distance between <code class='backtick'>first</code> and <code class='backtick'>last</code>)
and no reallocations if iterators <code class='backtick'>first</code> and <code class='backtick'>last</code> are of forward,
bidirectional, or random access categories.
It <del>makes</del> <ins>initializes</ins> order
<i>N</i>
<del>calls to the copy constructor of</del>
<ins>objects of type</ins>
<code class='backtick'>T</code> and <ins>performs</ins>
<del>calls to the copy constructor of <code class='backtick'>T</code></del>
<ins>elements</ins>
and <ins>performs</ins>
order log <i>N</i> reallocations if they are just input iterators.
</p>
<pre>template&lt;<i>container-compatible-range</i>&lt;T&gt; R&gt;
Expand All @@ -63014,8 +63015,8 @@ <h3 id="4123"><a href="#4123">4123</a><sup><a href="https://cplusplus.github.io/
Performs no reallocations if <code class='backtick'>R</code> models <code class='backtick'>ranges::forward_range</code> or
<code class='backtick'>ranges::sized_range</code>; otherwise, performs order log <i>N</i> reallocations
and <ins>initializes</ins> order <i>N</i>
<del>calls to the copy or move constructor of</del>
<ins>objects of type</ins> <code class='backtick'>T</code>.
<del>calls to the copy or move constructor of <code class='backtick'>T</code></del>
<ins>elements</ins>.
</p>
</blockquote>
</li>
Expand Down
2 changes: 1 addition & 1 deletion lwg-closed.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
</tr>
</table>
<h1>C++ Standard Library Closed Issues List (Revision D125)</h1>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p>
<p>Reference ISO/IEC IS 14882:2020(E)</p>
<p>Also see:</p>
Expand Down
2 changes: 1 addition & 1 deletion lwg-defects.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
</tr>
</table>
<h1>C++ Standard Library Defect Reports and Accepted Issues (Revision D125)</h1>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p>
<p>Reference ISO/IEC IS 14882:2020(E)</p>
<p>Also see:</p>
Expand Down
2 changes: 1 addition & 1 deletion lwg-immediate.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ <h1>C++ Standard Library Issues Resolved Directly In [INSERT CURRENT MEETING HER
</tr>
<tr>
<td align="left">Date:</td>
<td align="left">Revised 2024-12-06 at 21:02:56 UTC
<td align="left">Revised 2024-12-06 at 21:10:13 UTC
</td>
</tr>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion lwg-index-open.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ <h1>Index by Section</h1>
<p>This document is the Index by Section for the <a href="lwg-active.html">Library Active Issues List</a>.</p>
<h2>Index by Section (non-Ready active issues only)</h2>
<p><a href="lwg-index.html">(view all issues)</a></p>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p><h2 id="Section_3">Section 3 (2 issues)</h2>
<p><a href="lwg-index.html#Section_3">(view all issues)</a></p>
<table class="issues-index">
Expand Down
2 changes: 1 addition & 1 deletion lwg-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ <h1>Index by Section</h1>
<p>This document is the Index by Section for the <a href="lwg-active.html">Library Active Issues List</a>, <a href="lwg-defects.html">Library Defect Reports and Accepted Issues</a>, and <a href="lwg-closed.html">Library Closed Issues List</a>.</p>
<h2>Index by Section</h2>
<p><a href="lwg-index-open.html">(view only non-Ready open issues)</a></p>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p><h2 id="Section_2">Section 2 (2 issues)</h2>
<table class="issues-index">
<tr>
Expand Down
2 changes: 1 addition & 1 deletion lwg-ready.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ <h1>C++ Standard Library Issues to be moved in [INSERT CURRENT MEETING HERE]</h1
</tr>
<tr>
<td align="left">Date:</td>
<td align="left">Revised 2024-12-06 at 21:02:56 UTC
<td align="left">Revised 2024-12-06 at 21:10:13 UTC
</td>
</tr>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion lwg-status-date.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ <h1>Index by Status and Date</h1>
This document is the Index by Status and Date for the <a href="lwg-active.html">Library Active Issues List</a>,
<a href="lwg-defects.html">Library Defect Reports and Accepted Issues</a>, and <a href="lwg-closed.html">Library Closed Issues List</a>.
</p>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p><h2 id="Tentatively_NAD">Tentatively NAD (9 issues)</h2>
<table class="issues-index">
<tr>
Expand Down
2 changes: 1 addition & 1 deletion lwg-status.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ <h1>Index by Status and Section</h1>
<a href="lwg-defects.html">Library Defect Reports and Accepted Issues</a>, and <a href="lwg-closed.html">Library Closed Issues List</a>.
</p>

<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p><h2 id="Tentatively_NAD">Tentatively NAD (9 issues)</h2>
<table class="issues-index">
<tr>
Expand Down
2 changes: 1 addition & 1 deletion lwg-tentative.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
</style>
</head>
<body>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p><h2>Tentative Issues</h2>
<hr>
<h3 id="3908"><a href="#3908">3908</a><sup><a href="https://cplusplus.github.io/LWG/issue3908">(i)</a></sup>. <code>enumerate_view::<i>iterator</i></code> constructor is explicit</h3>
Expand Down
2 changes: 1 addition & 1 deletion lwg-toc.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h1>Table of Contents</h1>
<p>Reference ISO/IEC IS 14882:2024(E)</p>
<p>This document is the Table of Contents for the <a href="lwg-active.html">Library Active Issues List</a>,
<a href="lwg-defects.html">Library Defect Reports and Accepted Issues</a>, and <a href="lwg-closed.html">Library Closed Issues List</a>.</p>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p><table class="issues-index">
<tr>
<th><a href="lwg-toc.html">Issue</a></th>
Expand Down
29 changes: 15 additions & 14 deletions lwg-unresolved.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
</style>
</head>
<body>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p><h2>Unresolved Issues</h2>
<hr>
<h3 id="423"><a href="#423">423</a><sup><a href="https://cplusplus.github.io/LWG/issue423">(i)</a></sup>. Effects of negative <code>streamsize</code> in iostreams</h3>
Expand Down Expand Up @@ -60185,9 +60185,9 @@ <h3 id="4123"><a href="#4123">4123</a><sup><a href="https://cplusplus.github.io/
The complexity is linear in the number of elements inserted plus
the lesser of the distances to the beginning and end of the deque.
Inserting a single element at either the beginning or end of a deque
always takes constant time and causes
<del>a single call to a constructor of T</del>
<ins>construction of a single object of type <code class='backtick'>T</code></ins>.
always takes constant time and
<del>causes a single call to a constructor of T</del>
<ins>constructs a single object of type <code class='backtick'>T</code></ins>.
</p>
<p>
-3- <i>Remarks</i>:
Expand Down Expand Up @@ -60271,9 +60271,10 @@ <h3 id="4123"><a href="#4123">4123</a><sup><a href="https://cplusplus.github.io/
<blockquote>
<p>
-1- <i>Complexity</i>:
Insertion of a single element into a list takes constant time and exactly one
Insertion of a single element into a list takes constant time and
<ins>constructs</ins> exactly one
<del>call to a constructor of <code class='backtick'>T</code></del>
<ins>object of type <code class='backtick'>T</code> is constructed</ins>
<ins>object of type <code class='backtick'>T</code></ins>.
Insertion of multiple elements into a list is linear in the number of
elements inserted and the number of
<del>calls to the copy constructor or move constructor of <code class='backtick'>T</code></del>
Expand Down Expand Up @@ -60323,17 +60324,17 @@ <h3 id="4123"><a href="#4123">4123</a><sup><a href="https://cplusplus.github.io/
</p>
<p>
-10- <i>Complexity</i>:
<del>Makes only <i>N</i> calls to the copy constructor of</del>
<ins>Initializes exactly <i>N</i> objects of type</ins>
<code class='backtick'>T</code>
<del>Makes only <i>N</i> calls to the copy constructor of <code class='backtick'>T</code></del>
<ins>Initializes exactly <i>N</i> elements</ins>

(where <i>N</i> is the distance between <code class='backtick'>first</code> and <code class='backtick'>last</code>)
and no reallocations if iterators <code class='backtick'>first</code> and <code class='backtick'>last</code> are of forward,
bidirectional, or random access categories.
It <del>makes</del> <ins>initializes</ins> order
<i>N</i>
<del>calls to the copy constructor of</del>
<ins>objects of type</ins>
<code class='backtick'>T</code> and <ins>performs</ins>
<del>calls to the copy constructor of <code class='backtick'>T</code></del>
<ins>elements</ins>
and <ins>performs</ins>
order log <i>N</i> reallocations if they are just input iterators.
</p>
<pre>template&lt;<i>container-compatible-range</i>&lt;T&gt; R&gt;
Expand All @@ -60350,8 +60351,8 @@ <h3 id="4123"><a href="#4123">4123</a><sup><a href="https://cplusplus.github.io/
Performs no reallocations if <code class='backtick'>R</code> models <code class='backtick'>ranges::forward_range</code> or
<code class='backtick'>ranges::sized_range</code>; otherwise, performs order log <i>N</i> reallocations
and <ins>initializes</ins> order <i>N</i>
<del>calls to the copy or move constructor of</del>
<ins>objects of type</ins> <code class='backtick'>T</code>.
<del>calls to the copy or move constructor of <code class='backtick'>T</code></del>
<ins>elements</ins>.
</p>
</blockquote>
</li>
Expand Down
2 changes: 1 addition & 1 deletion unresolved-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ <h1>Index by Section</h1>
<p>This document is the Index by Section for the <a href="lwg-active.html">Library Active Issues List</a>, <a href="lwg-defects.html">Library Defect Reports and Accepted Issues</a>, and <a href="lwg-closed.html">Library Closed Issues List</a>.</p>
<h2>Index by Section</h2>
<p><a href="lwg-index-open.html">(view only non-Ready open issues)</a></p>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p><h2 id="Section_3">Section 3 (2 issues)</h2>
<p><a href="lwg-index-open.html#Section_3">(view only non-Ready open issues)</a></p>
<table class="issues-index">
Expand Down
2 changes: 1 addition & 1 deletion unresolved-prioritized.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ <h1>Table of Contents</h1>
<p>This document is the Table of Contents for the <a href="lwg-active.html">Library Active Issues List</a>,
<a href="lwg-defects.html">Library Defect Reports and Accepted Issues</a>, and <a href="lwg-closed.html">Library Closed Issues List</a>,
sorted by priority.</p>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p><h2 id="Priority_1">Priority 1 (2 issues)</h2>
<table class="issues-index">
<tr>
Expand Down
2 changes: 1 addition & 1 deletion unresolved-status-date.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ <h1>Index by Status and Date</h1>
This document is the Index by Status and Date for the <a href="lwg-active.html">Library Active Issues List</a>,
<a href="lwg-defects.html">Library Defect Reports and Accepted Issues</a>, and <a href="lwg-closed.html">Library Closed Issues List</a>.
</p>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p><h2 id="New">New (442 issues)</h2>
<table class="issues-index">
<tr>
Expand Down
2 changes: 1 addition & 1 deletion unresolved-status.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ <h1>Index by Status and Section</h1>
<a href="lwg-defects.html">Library Defect Reports and Accepted Issues</a>, and <a href="lwg-closed.html">Library Closed Issues List</a>.
</p>

<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p><h2 id="New">New (442 issues)</h2>
<table class="issues-index">
<tr>
Expand Down
2 changes: 1 addition & 1 deletion unresolved-toc.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h1>Table of Contents</h1>
<p>Reference ISO/IEC IS 14882:2024(E)</p>
<p>This document is the Table of Contents for the <a href="lwg-active.html">Library Active Issues List</a>,
<a href="lwg-defects.html">Library Defect Reports and Accepted Issues</a>, and <a href="lwg-closed.html">Library Closed Issues List</a>.</p>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p><table class="issues-index">
<tr>
<th><a href="lwg-toc.html">Issue</a></th>
Expand Down
2 changes: 1 addition & 1 deletion votable-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@ <h1>Index by Section</h1>
<p>This document is the Index by Section for the <a href="lwg-active.html">Library Active Issues List</a>, <a href="lwg-defects.html">Library Defect Reports and Accepted Issues</a>, and <a href="lwg-closed.html">Library Closed Issues List</a>.</p>
<h2>Index by Section</h2>
<p><a href="lwg-index-open.html">(view only non-Ready open issues)</a></p>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p></body>
</html>
2 changes: 1 addition & 1 deletion votable-status-date.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ <h1>Index by Status and Date</h1>
This document is the Index by Status and Date for the <a href="lwg-active.html">Library Active Issues List</a>,
<a href="lwg-defects.html">Library Defect Reports and Accepted Issues</a>, and <a href="lwg-closed.html">Library Closed Issues List</a>.
</p>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p></body>
</html>
2 changes: 1 addition & 1 deletion votable-status.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ <h1>Index by Status and Section</h1>
<a href="lwg-defects.html">Library Defect Reports and Accepted Issues</a>, and <a href="lwg-closed.html">Library Closed Issues List</a>.
</p>

<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p></body>
</html>
2 changes: 1 addition & 1 deletion votable-toc.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h1>Table of Contents</h1>
<p>Reference ISO/IEC IS 14882:2024(E)</p>
<p>This document is the Table of Contents for the <a href="lwg-active.html">Library Active Issues List</a>,
<a href="lwg-defects.html">Library Defect Reports and Accepted Issues</a>, and <a href="lwg-closed.html">Library Closed Issues List</a>.</p>
<p>Revised 2024-12-06 at 21:02:56 UTC
<p>Revised 2024-12-06 at 21:10:13 UTC
</p><table class="issues-index">
<tr>
<th><a href="lwg-toc.html">Issue</a></th>
Expand Down

0 comments on commit 64b7281

Please sign in to comment.