Skip to content

Commit 78273b1

Browse files
author
github-actions
committed
Automatic update from GitHub Actions workflow
1 parent 106b045 commit 78273b1

22 files changed

+54
-51
lines changed

issue4281.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
<p><em>This page is a snapshot from the LWG issues list, see the <a href="lwg-active.html">Library Active Issues List</a> for more information and the meaning of <a href="lwg-active.html#New">New</a> status.</em></p>
6565
<h3 id="4281"><a href="lwg-active.html#4281">4281</a>. Inconsistency between <code class='backtick'>value_or()</code> and <code class='backtick'>error_or()</code> in <code class='backtick'>std::expected</code></h3>
6666
<p><b>Section:</b> 22.5.3.7 <a href="https://wg21.link/optional.observe">[optional.observe]</a>, 22.8.6.6 <a href="https://wg21.link/expected.object.obs">[expected.object.obs]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Hiroaki Ando <b>Opened:</b> 2025-06-27 <b>Last modified:</b> 2025-06-27</p>
67+
<b>Submitter:</b> Hiroaki Ando <b>Opened:</b> 2025-06-27 <b>Last modified:</b> 2025-07-01</p>
6868
<p><b>Priority: </b>Not Prioritized
6969
</p>
7070
<p><b>View other</b> <a href="lwg-index-open.html#optional.observe">active issues</a> in [optional.observe].</p>
@@ -98,11 +98,12 @@ <h3 id="4281"><a href="lwg-active.html#4281">4281</a>. Inconsistency between <co
9898
The <code class='backtick'>error_or</code> wording also avoids using an explicit conversion when the
9999
<i>Mandates</i>: element requires implicit conversion to work anyway.
100100
We might want to rephrase the <code class='backtick'>value_or</code> wording to match <code class='backtick'>error_or</code>,
101-
or possibly make <code class='backtick'>value_or</code> and <code class='backtick'>error_or</code> even more explicit:
101+
or possibly make <code class='backtick'>value_or</code> and <code class='backtick'>error_or</code> even more explicit,
102+
specifying them in terms of <code class='backtick'>if</code>-<code class='backtick'>else</code>:
103+
:
102104
</p>
103105
<blockquote>
104-
<i>Effects</i>: Equivalent to:
105-
<pre><code>
106+
<i>Effects</i>: Equivalent to: <pre><code>
106107
if (has_value())
107108
return **this;
108109
else

lwg-active.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
</tr>
8080
</table>
8181
<h1>C++ Standard Library Active Issues List (Revision D125)</h1>
82-
<p>Revised 2025-07-01 at 09:01:27 UTC
82+
<p>Revised 2025-07-01 at 09:31:11 UTC
8383
</p>
8484
<p>Reference ISO/IEC IS 14882:2020(E)</p>
8585
<p>Also see:</p>
@@ -74402,7 +74402,7 @@ <h3 id="4280"><a href="#4280">4280</a><sup><a href="https://cplusplus.github.io/
7440274402
<hr>
7440374403
<h3 id="4281"><a href="#4281">4281</a><sup><a href="https://cplusplus.github.io/LWG/issue4281">(i)</a></sup>. Inconsistency between <code class='backtick'>value_or()</code> and <code class='backtick'>error_or()</code> in <code class='backtick'>std::expected</code></h3>
7440474404
<p><b>Section:</b> 22.5.3.7 <a href="https://wg21.link/optional.observe">[optional.observe]</a>, 22.8.6.6 <a href="https://wg21.link/expected.object.obs">[expected.object.obs]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
74405-
<b>Submitter:</b> Hiroaki Ando <b>Opened:</b> 2025-06-27 <b>Last modified:</b> 2025-06-27</p>
74405+
<b>Submitter:</b> Hiroaki Ando <b>Opened:</b> 2025-06-27 <b>Last modified:</b> 2025-07-01</p>
7440674406
<p><b>Priority: </b>Not Prioritized
7440774407
</p>
7440874408
<p><b>View other</b> <a href="lwg-index-open.html#optional.observe">active issues</a> in [optional.observe].</p>
@@ -74436,11 +74436,12 @@ <h3 id="4281"><a href="#4281">4281</a><sup><a href="https://cplusplus.github.io/
7443674436
The <code class='backtick'>error_or</code> wording also avoids using an explicit conversion when the
7443774437
<i>Mandates</i>: element requires implicit conversion to work anyway.
7443874438
We might want to rephrase the <code class='backtick'>value_or</code> wording to match <code class='backtick'>error_or</code>,
74439-
or possibly make <code class='backtick'>value_or</code> and <code class='backtick'>error_or</code> even more explicit:
74439+
or possibly make <code class='backtick'>value_or</code> and <code class='backtick'>error_or</code> even more explicit,
74440+
specifying them in terms of <code class='backtick'>if</code>-<code class='backtick'>else</code>:
74441+
:
7444074442
</p>
7444174443
<blockquote>
74442-
<i>Effects</i>: Equivalent to:
74443-
<pre><code>
74444+
<i>Effects</i>: Equivalent to: <pre><code>
7444474445
if (has_value())
7444574446
return **this;
7444674447
else

lwg-closed.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
</tr>
8080
</table>
8181
<h1>C++ Standard Library Closed Issues List (Revision D125)</h1>
82-
<p>Revised 2025-07-01 at 09:01:27 UTC
82+
<p>Revised 2025-07-01 at 09:31:11 UTC
8383
</p>
8484
<p>Reference ISO/IEC IS 14882:2020(E)</p>
8585
<p>Also see:</p>

lwg-defects.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
</tr>
8080
</table>
8181
<h1>C++ Standard Library Defect Reports and Accepted Issues (Revision D125)</h1>
82-
<p>Revised 2025-07-01 at 09:01:27 UTC
82+
<p>Revised 2025-07-01 at 09:31:11 UTC
8383
</p>
8484
<p>Reference ISO/IEC IS 14882:2020(E)</p>
8585
<p>Also see:</p>

lwg-immediate.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ <h1>C++ Standard Library Issues Resolved Directly In [INSERT CURRENT MEETING HER
6262
</tr>
6363
<tr>
6464
<td align="left">Date:</td>
65-
<td align="left">Revised 2025-07-01 at 09:01:27 UTC
65+
<td align="left">Revised 2025-07-01 at 09:31:11 UTC
6666
</td>
6767
</tr>
6868
<tr>

lwg-index-open.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ <h1>Index by Section</h1>
6666
<p>This document is the Index by Section for the <a href="lwg-active.html">Library Active Issues List</a>.</p>
6767
<h2>Index by Section (non-Ready active issues only)</h2>
6868
<p><a href="lwg-index.html">(view all issues)</a></p>
69-
<p>Revised 2025-07-01 at 09:01:27 UTC
69+
<p>Revised 2025-07-01 at 09:31:11 UTC
7070
</p><h2 id="Section_3">Section 3 (2 issues)</h2>
7171
<p><a href="lwg-index.html#Section_3">(view all issues)</a></p>
7272
<table class="issues-index">

lwg-index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ <h1>Index by Section</h1>
6666
<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>
6767
<h2>Index by Section</h2>
6868
<p><a href="lwg-index-open.html">(view only non-Ready open issues)</a></p>
69-
<p>Revised 2025-07-01 at 09:01:27 UTC
69+
<p>Revised 2025-07-01 at 09:31:11 UTC
7070
</p><h2 id="Section_2">Section 2 (2 issues)</h2>
7171
<table class="issues-index">
7272
<tr>

lwg-ready.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ <h1>C++ Standard Library Issues to be moved in [INSERT CURRENT MEETING HERE]</h1
6262
</tr>
6363
<tr>
6464
<td align="left">Date:</td>
65-
<td align="left">Revised 2025-07-01 at 09:01:27 UTC
65+
<td align="left">Revised 2025-07-01 at 09:31:11 UTC
6666
</td>
6767
</tr>
6868
<tr>

lwg-status-date.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ <h1>Index by Status and Date</h1>
6767
This document is the Index by Status and Date for the <a href="lwg-active.html">Library Active Issues List</a>,
6868
<a href="lwg-defects.html">Library Defect Reports and Accepted Issues</a>, and <a href="lwg-closed.html">Library Closed Issues List</a>.
6969
</p>
70-
<p>Revised 2025-07-01 at 09:01:27 UTC
70+
<p>Revised 2025-07-01 at 09:31:11 UTC
7171
</p><h2 id="Ready">Ready (1 issues)</h2>
7272
<table class="issues-index">
7373
<tr>
@@ -278,6 +278,15 @@ <h2 id="New">New (503 issues)</h2>
278278
<th>Duplicates</th>
279279
</tr>
280280
<tr>
281+
<td id="4281"><a href="lwg-active.html#4281" title="Inconsistency between value_or() and error_or() in std::expected (Status: New)">4281</a><sup><a href="https://cplusplus.github.io/LWG/issue4281">(i)</a></sup></td>
282+
<td><a href="lwg-active.html#New">New</a></td>
283+
<td>22.5.3.7 [optional.observe]</td>
284+
<td>Inconsistency between <code class='backtick'>value_or()</code> and <code class='backtick'>error_or()</code> in <code class='backtick'>std::expected</code></td>
285+
<td><span class="no-pr">No</span></td>
286+
<td></td>
287+
<td></td>
288+
</tr>
289+
<tr>
281290
<td id="3537"><a href="lwg-active.html#3537" title="&sect;[iterator.range] Missing noexcept for std::rbegin/rend for arrays and
282291
initializer_list (Status: New)">3537</a><sup><a href="https://cplusplus.github.io/LWG/issue3537">(i)</a></sup></td>
283292
<td><a href="lwg-active.html#New">New</a></td>
@@ -334,15 +343,6 @@ <h2 id="New">New (503 issues)</h2>
334343
<td></td>
335344
</tr>
336345
<tr>
337-
<td id="4281"><a href="lwg-active.html#4281" title="Inconsistency between value_or() and error_or() in std::expected (Status: New)">4281</a><sup><a href="https://cplusplus.github.io/LWG/issue4281">(i)</a></sup></td>
338-
<td><a href="lwg-active.html#New">New</a></td>
339-
<td>22.5.3.7 [optional.observe]</td>
340-
<td>Inconsistency between <code class='backtick'>value_or()</code> and <code class='backtick'>error_or()</code> in <code class='backtick'>std::expected</code></td>
341-
<td><span class="no-pr">No</span></td>
342-
<td></td>
343-
<td></td>
344-
</tr>
345-
<tr>
346346
<td id="4280"><a href="lwg-active.html#4280" title="simd::partial_load uses undefined identifier T (Status: New)">4280</a><sup><a href="https://cplusplus.github.io/LWG/issue4280">(i)</a></sup></td>
347347
<td><a href="lwg-active.html#New">New</a></td>
348348
<td>29.10.7.7 [simd.loadstore]</td>

lwg-status.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ <h1>Index by Status and Section</h1>
6262
<a href="lwg-defects.html">Library Defect Reports and Accepted Issues</a>, and <a href="lwg-closed.html">Library Closed Issues List</a>.
6363
</p>
6464

65-
<p>Revised 2025-07-01 at 09:01:27 UTC
65+
<p>Revised 2025-07-01 at 09:31:11 UTC
6666
</p><h2 id="Ready">Ready (1 issues)</h2>
6767
<table class="issues-index">
6868
<tr>

0 commit comments

Comments
 (0)