Skip to content

Commit ff127ec

Browse files
author
github-actions
committed
Automatic update from GitHub Actions workflow
1 parent 9713d3f commit ff127ec

31 files changed

+2349
-1380
lines changed

issue4160.html

Lines changed: 63 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
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="4160"><a href="lwg-active.html#4160">4160</a>. <code>packaged_task</code> should reject rvalue reference return types</h3>
6666
<p><b>Section:</b> 32.10.10.1 <a href="https://wg21.link/futures.task.general">[futures.task.general]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Casey Carter <b>Opened:</b> 2024-09-28 <b>Last modified:</b> 2024-10-03</p>
68-
<p><b>Priority: </b>Not Prioritized
67+
<b>Submitter:</b> Casey Carter <b>Opened:</b> 2024-09-28 <b>Last modified:</b> 2025-02-07</p>
68+
<p><b>Priority: </b>3
6969
</p>
7070
<p><b>View all issues with</b> <a href="lwg-status.html#New">New</a> status.</p>
7171
<p><b>Discussion:</b></p>
@@ -82,8 +82,18 @@ <h3 id="4160"><a href="lwg-active.html#4160">4160</a>. <code>packaged_task</code
8282
relying on the fact that one of the basis operations is unusable.
8383
</p>
8484

85+
<p><i>[2025-02-07; Reflector poll]</i></p>
86+
87+
<p>
88+
Set priority to 3 after reflector poll.
89+
</p>
90+
<p>
91+
"Shouldn't it be ill-formed only if instantiated?"
92+
</p>
93+
94+
<p><strong>Previous resolution [SUPERSEDED]:</strong></p>
95+
<blockquote class="note">
8596

86-
<p id="res-4160"><b>Proposed resolution:</b></p>
8797
<p>
8898
This wording is relative to <a href="https://wg21.link/N4988" title=" Working Draft, Programming Languages — C++">N4988</a>.
8999
</p>
@@ -122,6 +132,56 @@ <h3 id="4160"><a href="lwg-active.html#4160">4160</a>. <code>packaged_task</code
122132
</blockquote>
123133
</li>
124134
</ol>
135+
</blockquote>
136+
137+
<p><i>[2025-02-07; Jonathan provides improved wording]</i></p>
138+
139+
140+
141+
142+
<p id="res-4160"><b>Proposed resolution:</b></p>
143+
<p>
144+
This wording is relative to <a href="https://wg21.link/N5001">N5001</a>.
145+
</p>
146+
147+
<ol>
148+
<li><p>Modify 32.10.10.1 <a href="https://wg21.link/futures.task.general">[futures.task.general]</a> as indicated:</p>
149+
150+
<blockquote>
151+
<p>
152+
[&hellip;]
153+
<p/>
154+
-2- When the <code>packaged_task</code> object is invoked, its stored task is invoked and the result
155+
(whether normal or exceptional) stored in the shared state. Any futures that share the shared state
156+
will then be able to access the stored result.
157+
</p>
158+
<blockquote>
159+
<pre>
160+
namespace std {
161+
template&lt;class&gt; class packaged_task; // <i>not defined</i>
162+
163+
template&lt;class R, class... ArgTypes&gt;
164+
class packaged_task&lt;R(ArgTypes...)&gt; {
165+
[&hellip;]
166+
};
167+
168+
template&lt;class R, class... ArgTypes&gt;
169+
packaged_task(R (*)(ArgTypes...)) -&gt; packaged_task&lt;R(ArgTypes...)&gt;;
170+
171+
template&lt;class F&gt; packaged_task(F) -&gt; packaged_task&lt;<i>see below</i>&gt;;
172+
}
173+
</pre>
174+
</blockquote>
175+
<p>
176+
<ins>-?-
177+
If the definition of a specialization
178+
<code>packaged_task&lt;R(Args...)&gt;</code> is instantiated for
179+
an rvalue reference type <code class='backtick'>R</code>, the program is ill-formed.
180+
</ins>
181+
</p>
182+
</blockquote>
183+
</li>
184+
</ol>
125185

126186

127187

issue4163.html

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<title>Issue 4163: Can the overload of std::num_get::do_get for bool call the overload for long?</title>
66
<meta property="og:title" content="Issue 4163: Can the overload of std::num_get::do_get for bool call the overload for long?">
7-
<meta property="og:description" content="C++ library issue. Status: New">
7+
<meta property="og:description" content="C++ library issue. Status: Tentatively NAD">
88
<meta property="og:url" content="https://cplusplus.github.io/LWG/issue4163.html">
99
<meta property="og:type" content="website">
1010
<meta property="og:image" content="http://cplusplus.github.io/LWG/images/cpp_logo.png">
@@ -61,15 +61,15 @@
6161
</head>
6262
<body>
6363
<hr>
64-
<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>
64+
<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#NAD">Tentatively NAD</a> status.</em></p>
6565
<h3 id="4163"><a href="lwg-active.html#4163">4163</a>. Can the overload of <code>std::num_get::do_get</code> for <code>bool</code> call the overload for <code>long</code>?</h3>
66-
<p><b>Section:</b> 28.3.4.3.2.3 <a href="https://wg21.link/facet.num.get.virtuals">[facet.num.get.virtuals]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Jiang An <b>Opened:</b> 2024-09-29 <b>Last modified:</b> 2024-10-03</p>
66+
<p><b>Section:</b> 28.3.4.3.2.3 <a href="https://wg21.link/facet.num.get.virtuals">[facet.num.get.virtuals]</a> <b>Status:</b> <a href="lwg-active.html#NAD">Tentatively NAD</a>
67+
<b>Submitter:</b> Jiang An <b>Opened:</b> 2024-09-29 <b>Last modified:</b> 2025-02-07</p>
6868
<p><b>Priority: </b>Not Prioritized
6969
</p>
7070
<p><b>View other</b> <a href="lwg-index-open.html#facet.num.get.virtuals">active issues</a> in [facet.num.get.virtuals].</p>
7171
<p><b>View all other</b> <a href="lwg-index.html#facet.num.get.virtuals">issues</a> in [facet.num.get.virtuals].</p>
72-
<p><b>View all issues with</b> <a href="lwg-status.html#New">New</a> status.</p>
72+
<p><b>View all issues with</b> <a href="lwg-status.html#Tentatively NAD">Tentatively NAD</a> status.</p>
7373
<p><b>Discussion:</b></p>
7474
<p>
7575
28.3.4.3.2.3 <a href="https://wg21.link/facet.num.get.virtuals">[facet.num.get.virtuals]</a>/6 currently says:
@@ -88,6 +88,17 @@ <h3 id="4163"><a href="lwg-active.html#4163">4163</a>. Can the overload of <code
8888
As the divergence implementation strategies is observable, perhaps we should clarify on this.
8989
</p>
9090

91+
<p><i>[2025-02-07; Reflector poll: NAD]</i></p>
92+
93+
<p>
94+
I think this is just a libc++ bug.
95+
The wording says it "proceeds as it would for <code class='backtick'>long</code>", which is not the same as
96+
actually making a virtual call to <code class='backtick'>do_get</code> for <code class='backtick'>long</code>. It can either duplicate
97+
the code from <code class='backtick'>do_get</code> for <code class='backtick'>long</code>, or make a non-virtual (i.e. qualified) call
98+
to <code class='backtick'>num_get::do_get</code>.
99+
</p>
100+
101+
91102

92103
<p id="res-4163"><b>Proposed resolution:</b></p>
93104

issue4172.html

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<title>Issue 4172: unique_lock self-move-assignment is broken</title>
66
<meta property="og:title" content="Issue 4172: unique_lock self-move-assignment is broken">
7-
<meta property="og:description" content="C++ library issue. Status: New">
7+
<meta property="og:description" content="C++ library issue. Status: Tentatively Ready">
88
<meta property="og:url" content="https://cplusplus.github.io/LWG/issue4172.html">
99
<meta property="og:type" content="website">
1010
<meta property="og:image" content="http://cplusplus.github.io/LWG/images/cpp_logo.png">
@@ -61,14 +61,14 @@
6161
</head>
6262
<body>
6363
<hr>
64-
<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>
64+
<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#Ready">Tentatively Ready</a> status.</em></p>
6565
<h3 id="4172"><a href="lwg-active.html#4172">4172</a>. unique_lock self-move-assignment is broken</h3>
66-
<p><b>Section:</b> 32.6.5.4.2 <a href="https://wg21.link/thread.lock.unique.cons">[thread.lock.unique.cons]</a>, 32.6.5.5.2 <a href="https://wg21.link/thread.lock.shared.cons">[thread.lock.shared.cons]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Casey Carter <b>Opened:</b> 2024-11-13 <b>Last modified:</b> 2024-11-18</p>
66+
<p><b>Section:</b> 32.6.5.4.2 <a href="https://wg21.link/thread.lock.unique.cons">[thread.lock.unique.cons]</a>, 32.6.5.5.2 <a href="https://wg21.link/thread.lock.shared.cons">[thread.lock.shared.cons]</a> <b>Status:</b> <a href="lwg-active.html#Ready">Tentatively Ready</a>
67+
<b>Submitter:</b> Casey Carter <b>Opened:</b> 2024-11-13 <b>Last modified:</b> 2025-02-07</p>
6868
<p><b>Priority: </b>Not Prioritized
6969
</p>
7070
<p><b>View all other</b> <a href="lwg-index.html#thread.lock.unique.cons">issues</a> in [thread.lock.unique.cons].</p>
71-
<p><b>View all issues with</b> <a href="lwg-status.html#New">New</a> status.</p>
71+
<p><b>View all issues with</b> <a href="lwg-status.html#Tentatively Ready">Tentatively Ready</a> status.</p>
7272
<p><b>Discussion:</b></p>
7373
<p>
7474
The postconditions in 32.6.5.4.2 <a href="https://wg21.link/thread.lock.unique.cons">[thread.lock.unique.cons]</a> paragraph 19:
@@ -96,6 +96,17 @@ <h3 id="4172"><a href="lwg-active.html#4172">4172</a>. unique_lock self-move-ass
9696
<code class='backtick'>shared_lock</code> has the same problems, and can be fixed in the same way.
9797
</p>
9898

99+
<p><i>[2025-02-07; Reflector poll]</i></p>
100+
101+
<p>
102+
Set status to Tentatively Ready after seven votes in favour during reflector poll.
103+
</p>
104+
<p>
105+
"Should use parentheses not braces for the initializations."
106+
Jonathan volunteers to do that editorially after this gets approved.
107+
</p>
108+
109+
99110

100111
<p id="res-4172"><b>Proposed resolution:</b></p>
101112
<p>

issue4175.html

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<title>Issue 4175: get_env() specified in terms of as_const() but this doesn't work with rvalue senders</title>
66
<meta property="og:title" content="Issue 4175: get_env() specified in terms of as_const() but this doesn't work with rvalue senders">
7-
<meta property="og:description" content="C++ library issue. Status: New">
7+
<meta property="og:description" content="C++ library issue. Status: Tentatively Ready">
88
<meta property="og:url" content="https://cplusplus.github.io/LWG/issue4175.html">
99
<meta property="og:type" content="website">
1010
<meta property="og:image" content="http://cplusplus.github.io/LWG/images/cpp_logo.png">
@@ -61,13 +61,13 @@
6161
</head>
6262
<body>
6363
<hr>
64-
<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>
64+
<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#Ready">Tentatively Ready</a> status.</em></p>
6565
<h3 id="4175"><a href="lwg-active.html#4175">4175</a>. <code class='backtick'>get_env()</code> specified in terms of <code class='backtick'>as_const()</code> but this doesn't work with rvalue senders</h3>
66-
<p><b>Section:</b> 33.5.2 <a href="https://wg21.link/exec.get.allocator">[exec.get.allocator]</a>, 33.5.3 <a href="https://wg21.link/exec.get.stop.token">[exec.get.stop.token]</a>, 33.5.4 <a href="https://wg21.link/exec.get.env">[exec.get.env]</a>, 33.5.5 <a href="https://wg21.link/exec.get.domain">[exec.get.domain]</a>, 33.5.6 <a href="https://wg21.link/exec.get.scheduler">[exec.get.scheduler]</a>, 33.5.7 <a href="https://wg21.link/exec.get.delegation.scheduler">[exec.get.delegation.scheduler]</a>, 33.5.8 <a href="https://wg21.link/exec.get.fwd.progress">[exec.get.fwd.progress]</a>, 33.5.9 <a href="https://wg21.link/exec.get.compl.sched">[exec.get.compl.sched]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Lewis Baker <b>Opened:</b> 2024-11-10 <b>Last modified:</b> 2024-11-24</p>
66+
<p><b>Section:</b> 33.5.2 <a href="https://wg21.link/exec.get.allocator">[exec.get.allocator]</a>, 33.5.3 <a href="https://wg21.link/exec.get.stop.token">[exec.get.stop.token]</a>, 33.5.4 <a href="https://wg21.link/exec.get.env">[exec.get.env]</a>, 33.5.5 <a href="https://wg21.link/exec.get.domain">[exec.get.domain]</a>, 33.5.6 <a href="https://wg21.link/exec.get.scheduler">[exec.get.scheduler]</a>, 33.5.7 <a href="https://wg21.link/exec.get.delegation.scheduler">[exec.get.delegation.scheduler]</a>, 33.5.8 <a href="https://wg21.link/exec.get.fwd.progress">[exec.get.fwd.progress]</a>, 33.5.9 <a href="https://wg21.link/exec.get.compl.sched">[exec.get.compl.sched]</a> <b>Status:</b> <a href="lwg-active.html#Ready">Tentatively Ready</a>
67+
<b>Submitter:</b> Lewis Baker <b>Opened:</b> 2024-11-10 <b>Last modified:</b> 2025-02-07</p>
6868
<p><b>Priority: </b>Not Prioritized
6969
</p>
70-
<p><b>View all issues with</b> <a href="lwg-status.html#New">New</a> status.</p>
70+
<p><b>View all issues with</b> <a href="lwg-status.html#Tentatively Ready">Tentatively Ready</a> status.</p>
7171
<p><b>Discussion:</b></p>
7272
<p>
7373
The current specification of <code class='backtick'>std::execution::get_env()</code> defines <code class='backtick'>get_env(o)</code> as <code class='backtick'>as_const(o).get_env()</code>.
@@ -84,6 +84,16 @@ <h3 id="4175"><a href="lwg-active.html#4175">4175</a>. <code class='backtick'>ge
8484
<code>const T&amp;</code> parameter, so I suggest we change it to something else that expresses the intent.
8585
</p>
8686

87+
<p><i>[2025-02-07; Reflector poll]</i></p>
88+
89+
<p>
90+
Set status to Tentatively Ready after five votes in favour during reflector poll.
91+
</p>
92+
<p>
93+
This could use the "reified object" idea from 25.3 <a href="https://wg21.link/range.access">[range.access]</a>.
94+
</p>
95+
96+
8797

8898
<p id="res-4175"><b>Proposed resolution:</b></p>
8999
<p>

issue4179.html

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<title>Issue 4179: Wrong range in [alg.search]</title>
66
<meta property="og:title" content="Issue 4179: Wrong range in [alg.search]">
7-
<meta property="og:description" content="C++ library issue. Status: New">
7+
<meta property="og:description" content="C++ library issue. Status: Tentatively Ready">
88
<meta property="og:url" content="https://cplusplus.github.io/LWG/issue4179.html">
99
<meta property="og:type" content="website">
1010
<meta property="og:image" content="http://cplusplus.github.io/LWG/images/cpp_logo.png">
@@ -61,14 +61,14 @@
6161
</head>
6262
<body>
6363
<hr>
64-
<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>
64+
<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#Ready">Tentatively Ready</a> status.</em></p>
6565
<h3 id="4179"><a href="lwg-active.html#4179">4179</a>. Wrong range in [alg.search]</h3>
66-
<p><b>Section:</b> 26.6.15 <a href="https://wg21.link/alg.search">[alg.search]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Oscar Slotosch <b>Opened:</b> 2024-12-05 <b>Last modified:</b> 2024-12-07</p>
66+
<p><b>Section:</b> 26.6.15 <a href="https://wg21.link/alg.search">[alg.search]</a> <b>Status:</b> <a href="lwg-active.html#Ready">Tentatively Ready</a>
67+
<b>Submitter:</b> Oscar Slotosch <b>Opened:</b> 2024-12-05 <b>Last modified:</b> 2025-02-07</p>
6868
<p><b>Priority: </b>Not Prioritized
6969
</p>
7070
<p><b>View all other</b> <a href="lwg-index.html#alg.search">issues</a> in [alg.search].</p>
71-
<p><b>View all issues with</b> <a href="lwg-status.html#New">New</a> status.</p>
71+
<p><b>View all issues with</b> <a href="lwg-status.html#Tentatively Ready">Tentatively Ready</a> status.</p>
7272
<p><b>Discussion:</b></p>
7373
<p>
7474
Originally reported as editorial request <a href="https://github.com/cplusplus/draft/issues/7474">#7474</a>:
@@ -98,6 +98,13 @@ <h3 id="4179"><a href="lwg-active.html#4179">4179</a>. Wrong range in [alg.searc
9898
variants specified in 26.6.15 <a href="https://wg21.link/alg.search">[alg.search]</a> (except for the form using a <code class='backtick'>Searcher</code>).
9999
</p>
100100

101+
<p><i>[2025-02-07; Reflector poll]</i></p>
102+
103+
<p>
104+
Set status to Tentatively Ready after ten votes in favour during reflector poll.
105+
</p>
106+
107+
101108

102109
<p id="res-4179"><b>Proposed resolution:</b></p>
103110
<p>

issue4182.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
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="4182"><a href="lwg-active.html#4182">4182</a>. Definition of <code class='backtick'>NULL</code> is too broad</h3>
6666
<p><b>Section:</b> 17.2.3 <a href="https://wg21.link/support.types.nullptr">[support.types.nullptr]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Janet Cobb <b>Opened:</b> 2024-12-09 <b>Last modified:</b> 2024-12-21</p>
68-
<p><b>Priority: </b>Not Prioritized
67+
<b>Submitter:</b> Janet Cobb <b>Opened:</b> 2024-12-09 <b>Last modified:</b> 2025-02-07</p>
68+
<p><b>Priority: </b>3
6969
</p>
7070
<p><b>View all issues with</b> <a href="lwg-status.html#New">New</a> status.</p>
7171
<p><b>Discussion:</b></p>
@@ -80,6 +80,14 @@ <h3 id="4182"><a href="lwg-active.html#4182">4182</a>. Definition of <code class
8080
any program that evaluates <code class='backtick'>NULL</code> has undefined behavior.
8181
</p>
8282

83+
<p><i>[2025-02-07; Reflector poll]</i></p>
84+
85+
<p>
86+
Set priority to 3 after reflector poll.
87+
</p>
88+
<p>"I'd very much like to see <code class='backtick'>nullptr</code> added to the footnote."</p>
89+
90+
8391

8492
<p id="res-4182"><b>Proposed resolution:</b></p>
8593
<p>

issue4186.html

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<title>Issue 4186: regex_traits::transform_primary mistakenly detects typeid of a function</title>
66
<meta property="og:title" content="Issue 4186: regex_traits::transform_primary mistakenly detects typeid of a function">
7-
<meta property="og:description" content="C++ library issue. Status: New">
7+
<meta property="og:description" content="C++ library issue. Status: Tentatively Ready">
88
<meta property="og:url" content="https://cplusplus.github.io/LWG/issue4186.html">
99
<meta property="og:type" content="website">
1010
<meta property="og:image" content="http://cplusplus.github.io/LWG/images/cpp_logo.png">
@@ -61,15 +61,15 @@
6161
</head>
6262
<body>
6363
<hr>
64-
<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>
64+
<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#Ready">Tentatively Ready</a> status.</em></p>
6565
<h3 id="4186"><a href="lwg-active.html#4186">4186</a>. <code class='backtick'>regex_traits::transform_primary</code> mistakenly detects <code class='backtick'>typeid</code> of a function</h3>
66-
<p><b>Section:</b> 28.6.6 <a href="https://wg21.link/re.traits">[re.traits]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Jiang An <b>Opened:</b> 2024-12-18 <b>Last modified:</b> 2024-12-21</p>
66+
<p><b>Section:</b> 28.6.6 <a href="https://wg21.link/re.traits">[re.traits]</a> <b>Status:</b> <a href="lwg-active.html#Ready">Tentatively Ready</a>
67+
<b>Submitter:</b> Jiang An <b>Opened:</b> 2024-12-18 <b>Last modified:</b> 2025-02-07</p>
6868
<p><b>Priority: </b>Not Prioritized
6969
</p>
7070
<p><b>View other</b> <a href="lwg-index-open.html#re.traits">active issues</a> in [re.traits].</p>
7171
<p><b>View all other</b> <a href="lwg-index.html#re.traits">issues</a> in [re.traits].</p>
72-
<p><b>View all issues with</b> <a href="lwg-status.html#New">New</a> status.</p>
72+
<p><b>View all issues with</b> <a href="lwg-status.html#Tentatively Ready">Tentatively Ready</a> status.</p>
7373
<p><b>Discussion:</b></p>
7474
<p>
7575
28.6.6 <a href="https://wg21.link/re.traits">[re.traits]</a>/7 currently says <code>typeid(use_facet&lt;collate&lt;charT&gt;&gt;) ==
@@ -81,6 +81,13 @@ <h3 id="4186"><a href="lwg-active.html#4186">4186</a>. <code class='backtick'>re
8181
Presumably the intended operand is <code>use_facet&lt;collate&lt;charT&gt;&gt;(getloc())</code>.
8282
</p>
8383

84+
<p><i>[2025-02-07; Reflector poll]</i></p>
85+
86+
<p>
87+
Set status to Tentatively Ready after seven votes in favour during reflector poll.
88+
</p>
89+
90+
8491

8592
<p id="res-4186"><b>Proposed resolution:</b></p>
8693
<p>

0 commit comments

Comments
 (0)