Skip to content

Commit f8ab5c1

Browse files
author
github-actions
committed
Automatic update from GitHub Actions workflow
1 parent 1b33a9e commit f8ab5c1

36 files changed

+1195
-1360
lines changed

issue4165.html

Lines changed: 17 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="4165"><a href="lwg-active.html#4165">4165</a>. Should swapping a built-in array or <code class='backtick'>std::array</code> with itself result in UB?</h3>
6666
<p><b>Section:</b> 18.4.9 <a href="https://wg21.link/concept.swappable">[concept.swappable]</a>, 22.2.2 <a href="https://wg21.link/utility.swap">[utility.swap]</a>, 23.3.3.3 <a href="https://wg21.link/array.members">[array.members]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Jiang An <b>Opened:</b> 2024-10-13 <b>Last modified:</b> 2024-10-13</p>
68-
<p><b>Priority: </b>Not Prioritized
67+
<b>Submitter:</b> Jiang An <b>Opened:</b> 2024-10-13 <b>Last modified:</b> 2025-06-13</p>
68+
<p><b>Priority: </b>3
6969
</p>
7070
<p><b>View other</b> <a href="lwg-index-open.html#concept.swappable">active issues</a> in [concept.swappable].</p>
7171
<p><b>View all other</b> <a href="lwg-index.html#concept.swappable">issues</a> in [concept.swappable].</p>
@@ -85,6 +85,21 @@ <h3 id="4165"><a href="lwg-active.html#4165">4165</a>. Should swapping a built-i
8585
elements.
8686
</p>
8787

88+
<p><i>[2025-06-13; Reflector poll]</i></p>
89+
90+
<p>
91+
Set priority to 3 after reflector poll.
92+
</p>
93+
<p>
94+
Instead of a loop I'd prefer something like:
95+
<blockquote>
96+
<i>Effects</i>:
97+
If <code class='backtick'>addressof(a) == addressof(b)</code>, no effects.
98+
Otherwise, equivalent to <code class='backtick'>swap_ranges(begin(a), end(a), begin(b))</code>.
99+
</blockquote>
100+
</p>
101+
102+
88103

89104
<p id="res-4165"><b>Proposed resolution:</b></p>
90105

issue4167.html

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@
6767
<h3 id="4167"><a href="lwg-active.html#4167">4167</a>. Use of "smaller" and "larger" in <code>min</code>,
6868
<code>max</code>, and <code>minmax</code> is unclear</h3>
6969
<p><b>Section:</b> 26.8.9 <a href="https://wg21.link/alg.min.max">[alg.min.max]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
70-
<b>Submitter:</b> Casey Carter <b>Opened:</b> 2024-10-20 <b>Last modified:</b> 2024-10-20</p>
71-
<p><b>Priority: </b>Not Prioritized
70+
<b>Submitter:</b> Casey Carter <b>Opened:</b> 2024-10-20 <b>Last modified:</b> 2025-06-13</p>
71+
<p><b>Priority: </b>3
7272
</p>
7373
<p><b>View other</b> <a href="lwg-index-open.html#alg.min.max">active issues</a> in [alg.min.max].</p>
7474
<p><b>View all other</b> <a href="lwg-index.html#alg.min.max">issues</a> in [alg.min.max].</p>
@@ -102,6 +102,13 @@ <h3 id="4167"><a href="lwg-active.html#4167">4167</a>. Use of "smaller" and "lar
102102
and <code>a</code> otherwise.
103103
</p>
104104

105+
<p><i>[2025-06-13; Reflector poll]</i></p>
106+
107+
<p>
108+
Set priority to 3 after reflector poll.
109+
</p>
110+
111+
105112

106113
<p id="res-4167"><b>Proposed resolution:</b></p>
107114
<p>
@@ -178,7 +185,7 @@ <h3 id="4167"><a href="lwg-active.html#4167">4167</a>. Use of "smaller" and "lar
178185
-6- <i>Returns</i>: <del>The smallest value in the input range.
179186
Returns a copy of the leftmost element
180187
when several elements are equivalent to the smallest.</del>
181-
<ins>Returns a copy of the leftmost element <code>e</code>
188+
<ins>A copy of the leftmost element <code>e</code>
182189
in the input range <code>r</code> for which
183190
<code>bool(invoke(comp, invoke(proj, x), invoke(proj, e)))</code>
184191
is <code>false</code> for all elements <code>x</code> in <code>r</code>.</ins>

issue4210.html

Lines changed: 9 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="4210"><a href="lwg-active.html#4210">4210</a>. Issue with <code>cache_latest_view::<i>iterator</i></code>'s reference type </h3>
6666
<p><b>Section:</b> 25.7.34.3 <a href="https://wg21.link/range.cache.latest.iterator">[range.cache.latest.iterator]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Hewill Kang <b>Opened:</b> 2025-02-09 <b>Last modified:</b> 2025-02-09</p>
68-
<p><b>Priority: </b>Not Prioritized
67+
<b>Submitter:</b> Hewill Kang <b>Opened:</b> 2025-02-09 <b>Last modified:</b> 2025-06-13</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>
@@ -111,6 +111,13 @@ <h3 id="4210"><a href="lwg-active.html#4210">4210</a>. Issue with <code>cache_la
111111
the default <code>iter_move</code> return an rvalue when it always returns an lvalue.
112112
</p>
113113

114+
<p><i>[2025-06-13; Reflector poll]</i></p>
115+
116+
<p>
117+
Set priority to 3 after reflector poll.
118+
</p>
119+
120+
114121

115122
<p id="res-4210"><b>Proposed resolution:</b></p>
116123

issue4212.html

Lines changed: 9 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="4212"><a href="lwg-active.html#4212">4212</a>. Make the round states in [rand.eng.philox] explicit</h3>
6666
<p><b>Section:</b> 29.5.4.5 <a href="https://wg21.link/rand.eng.philox">[rand.eng.philox]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Thomas Köppe <b>Opened:</b> 2025-02-12 <b>Last modified:</b> 2025-02-24</p>
68-
<p><b>Priority: </b>Not Prioritized
67+
<b>Submitter:</b> Thomas Köppe <b>Opened:</b> 2025-02-12 <b>Last modified:</b> 2025-06-13</p>
68+
<p><b>Priority: </b>3
6969
</p>
7070
<p><b>View other</b> <a href="lwg-index-open.html#rand.eng.philox">active issues</a> in [rand.eng.philox].</p>
7171
<p><b>View all other</b> <a href="lwg-index.html#rand.eng.philox">issues</a> in [rand.eng.philox].</p>
@@ -91,6 +91,13 @@ <h3 id="4212"><a href="lwg-active.html#4212">4212</a>. Make the round states in
9191
<math><msup><mi>X</mi><mrow><mo>(</mo><mi>r</mi><mo>)</mo></mrow></msup></math>.
9292
</p>
9393

94+
<p><i>[2025-06-13; Reflector poll]</i></p>
95+
96+
<p>
97+
Set priority to 3 after reflector poll.
98+
</p>
99+
100+
94101

95102
<p id="res-4212"><b>Proposed resolution:</b></p>
96103
<p>

issue4215.html

Lines changed: 13 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="4215"><a href="lwg-active.html#4215">4215</a>. <code class='backtick'>run_loop::finish</code> should be <code class='backtick'>noexcept</code></h3>
6666
<p><b>Section:</b> 33.12.1 <a href="https://wg21.link/exec.run.loop">[exec.run.loop]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Eric Niebler <b>Opened:</b> 2025-02-13 <b>Last modified:</b> 2025-02-23</p>
68-
<p><b>Priority: </b>Not Prioritized
67+
<b>Submitter:</b> Eric Niebler <b>Opened:</b> 2025-02-13 <b>Last modified:</b> 2025-06-13</p>
68+
<p><b>Priority: </b>2
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>
@@ -121,6 +121,17 @@ <h3 id="4215"><a href="lwg-active.html#4215">4215</a>. <code class='backtick'>ru
121121
problem on the caller &mdash; who has no recourse &mdash; is simply wrong.
122122
</p>
123123

124+
<p><i>[2025-06-13; Reflector poll]</i></p>
125+
126+
<p>
127+
Set priority to 2 after reflector poll.
128+
</p>
129+
<p>
130+
"If this can call <code class='backtick'>terminate()</code>, we should explicitly say so
131+
(c.f. 32.7.4 <a href="https://wg21.link/thread.condition.condvar">[thread.condition.condvar]</a> p11)"
132+
</p>
133+
134+
124135

125136
<p id="res-4215"><b>Proposed resolution:</b></p>
126137
<p>

issue4216.html

Lines changed: 21 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="4216"><a href="lwg-active.html#4216">4216</a>. <code class='backtick'>num_put::do_put</code> and <code class='backtick'>void</code> pointers</h3>
6666
<p><b>Section:</b> 28.3.4.3.3.3 <a href="https://wg21.link/facet.num.put.virtuals">[facet.num.put.virtuals]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Nikolas Klauser <b>Opened:</b> 2025-02-26 <b>Last modified:</b> 2025-03-02</p>
68-
<p><b>Priority: </b>Not Prioritized
67+
<b>Submitter:</b> Nikolas Klauser <b>Opened:</b> 2025-02-26 <b>Last modified:</b> 2025-06-13</p>
68+
<p><b>Priority: </b>3
6969
</p>
7070
<p><b>View other</b> <a href="lwg-index-open.html#facet.num.put.virtuals">active issues</a> in [facet.num.put.virtuals].</p>
7171
<p><b>View all other</b> <a href="lwg-index.html#facet.num.put.virtuals">issues</a> in [facet.num.put.virtuals].</p>
@@ -88,6 +88,25 @@ <h3 id="4216"><a href="lwg-active.html#4216">4216</a>. <code class='backtick'>nu
8888
<code class='backtick'>num_put::do_put</code> and <code class='backtick'>printf</code> having different results in some rare cases.
8989
</p>
9090

91+
<p><i>[2025-06-13; Reflector poll]</i></p>
92+
93+
<p>
94+
Set priority to 3 after reflector poll.
95+
</p>
96+
<p>
97+
We could emphasize that calling <code class='backtick'>printf</code> isn't actually intended:
98+
<blockquote>
99+
The representations at the end of stage 1 consists of the <code class='backtick'>char</code>'s
100+
that would be printed by a call of <code class='backtick'>printf(s, val)</code>
101+
<ins>in a hypothetical implementation</ins>,
102+
where <code class='backtick'>s</code> is the conversion specifier determined above.
103+
</blockquote>
104+
</p>
105+
<p>
106+
Why is there an apostrophe in <code class='backtick'>char</code>'s?
107+
</p>
108+
109+
91110

92111
<p id="res-4216"><b>Proposed resolution:</b></p>
93112
<p>

issue4217.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 4217: Clarify mdspan layout mapping requirements for rank == 0</title>
66
<meta property="og:title" content="Issue 4217: Clarify mdspan layout mapping requirements for rank == 0">
7-
<meta property="og:description" content="C++ library issue. Status: New">
7+
<meta property="og:description" content="C++ library issue. Status: Voting">
88
<meta property="og:url" content="https://cplusplus.github.io/LWG/issue4217.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#Voting">Voting</a> status.</em></p>
6565
<h3 id="4217"><a href="lwg-active.html#4217">4217</a>. Clarify <code class='backtick'>mdspan</code> layout mapping requirements for <code class='backtick'>rank == 0</code></h3>
66-
<p><b>Section:</b> 23.7.3.4.2 <a href="https://wg21.link/mdspan.layout.reqmts">[mdspan.layout.reqmts]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Mark Hoemmen <b>Opened:</b> 2025-03-03 <b>Last modified:</b> 2025-03-09</p>
66+
<p><b>Section:</b> 23.7.3.4.2 <a href="https://wg21.link/mdspan.layout.reqmts">[mdspan.layout.reqmts]</a> <b>Status:</b> <a href="lwg-active.html#Voting">Voting</a>
67+
<b>Submitter:</b> Mark Hoemmen <b>Opened:</b> 2025-03-03 <b>Last modified:</b> 2025-06-13</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#Voting">Voting</a> status.</p>
7171
<p><b>Discussion:</b></p>
7272
<p>
7373
23.7.3.4.2 <a href="https://wg21.link/mdspan.layout.reqmts">[mdspan.layout.reqmts]</a> p19-21 says that a layout mapping needs to
@@ -96,6 +96,13 @@ <h3 id="4217"><a href="lwg-active.html#4217">4217</a>. Clarify <code class='back
9696
discussion.
9797
</p>
9898

99+
<p><i>[2025-06-13; Reflector poll]</i></p>
100+
101+
<p>
102+
Set status to Tentatively Ready after five votes in favour during reflector poll.
103+
</p>
104+
105+
99106

100107
<p id="res-4217"><b>Proposed resolution:</b></p>
101108
<p>

issue4218.html

Lines changed: 9 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="4218"><a href="lwg-active.html#4218">4218</a>. Constraint recursion in <code class='backtick'>basic_const_iterator</code>'s relational operators due to ADL + CWG 2369</h3>
6666
<p><b>Section:</b> 24.5.3.5 <a href="https://wg21.link/const.iterators.ops">[const.iterators.ops]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Patrick Palka <b>Opened:</b> 2025-03-03 <b>Last modified:</b> 2025-03-09</p>
68-
<p><b>Priority: </b>Not Prioritized
67+
<b>Submitter:</b> Patrick Palka <b>Opened:</b> 2025-03-03 <b>Last modified:</b> 2025-06-13</p>
68+
<p><b>Priority: </b>2
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>
@@ -135,6 +135,13 @@ <h3 id="4218"><a href="lwg-active.html#4218">4218</a>. Constraint recursion in <
135135
operators, but there the recursion was independent of CWG 2369.
136136
</p>
137137

138+
<p><i>[2025-06-13; Reflector poll]</i></p>
139+
140+
<p>
141+
Set priority to 2 after reflector poll.
142+
</p>
143+
144+
138145

139146
<p id="res-4218"><b>Proposed resolution:</b></p>
140147
<p>

issue4222.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 4222: expected constructor from a single value missing a constraint</title>
66
<meta property="og:title" content="Issue 4222: expected constructor from a single value missing a constraint">
7-
<meta property="og:description" content="C++ library issue. Status: New">
7+
<meta property="og:description" content="C++ library issue. Status: Voting">
88
<meta property="og:url" content="https://cplusplus.github.io/LWG/issue4222.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#Voting">Voting</a> status.</em></p>
6565
<h3 id="4222"><a href="lwg-active.html#4222">4222</a>. <code class='backtick'>expected</code> constructor from a single value missing a constraint</h3>
66-
<p><b>Section:</b> 22.8.6.2 <a href="https://wg21.link/expected.object.cons">[expected.object.cons]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Bronek Kozicki <b>Opened:</b> 2025-03-12 <b>Last modified:</b> 2025-03-15</p>
66+
<p><b>Section:</b> 22.8.6.2 <a href="https://wg21.link/expected.object.cons">[expected.object.cons]</a> <b>Status:</b> <a href="lwg-active.html#Voting">Voting</a>
67+
<b>Submitter:</b> Bronek Kozicki <b>Opened:</b> 2025-03-12 <b>Last modified:</b> 2025-06-13</p>
6868
<p><b>Priority: </b>Not Prioritized
6969
</p>
7070
<p><b>View all other</b> <a href="lwg-index.html#expected.object.cons">issues</a> in [expected.object.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#Voting">Voting</a> status.</p>
7272
<p><b>Discussion:</b></p>
7373
<p>
7474
When an <code class='backtick'>expected</code> object is initialized with a constructor taking first parameter of type <code class='backtick'>unexpect_t</code> ,
@@ -122,6 +122,13 @@ <h3 id="4222"><a href="lwg-active.html#4222">4222</a>. <code class='backtick'>ex
122122
expected&lt;T, E&gt; a(in_place, unexpect);
123123
</pre></blockquote>
124124

125+
<p><i>[2025-06-13; Reflector poll]</i></p>
126+
127+
<p>
128+
Set status to Tentatively Ready after nine votes in favour during reflector poll.
129+
</p>
130+
131+
125132

126133
<p id="res-4222"><b>Proposed resolution:</b></p>
127134
<p>

issue4224.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 4224: Philox engines should be freestanding</title>
66
<meta property="og:title" content="Issue 4224: Philox engines should be freestanding">
7-
<meta property="og:description" content="C++ library issue. Status: New">
7+
<meta property="og:description" content="C++ library issue. Status: Voting">
88
<meta property="og:url" content="https://cplusplus.github.io/LWG/issue4224.html">
99
<meta property="og:type" content="website">
1010
<meta property="og:image" content="http://cplusplus.github.io/LWG/images/cpp_logo.png">
@@ -61,22 +61,29 @@
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#Voting">Voting</a> status.</em></p>
6565
<h3 id="4224"><a href="lwg-active.html#4224">4224</a>. Philox engines should be freestanding</h3>
66-
<p><b>Section:</b> 29.5.4.5 <a href="https://wg21.link/rand.eng.philox">[rand.eng.philox]</a> <b>Status:</b> <a href="lwg-active.html#New">New</a>
67-
<b>Submitter:</b> Jiang An <b>Opened:</b> 2025-03-15 <b>Last modified:</b> 2025-03-15</p>
66+
<p><b>Section:</b> 29.5.4.5 <a href="https://wg21.link/rand.eng.philox">[rand.eng.philox]</a> <b>Status:</b> <a href="lwg-active.html#Voting">Voting</a>
67+
<b>Submitter:</b> Jiang An <b>Opened:</b> 2025-03-15 <b>Last modified:</b> 2025-06-13</p>
6868
<p><b>Priority: </b>Not Prioritized
6969
</p>
7070
<p><b>View other</b> <a href="lwg-index-open.html#rand.eng.philox">active issues</a> in [rand.eng.philox].</p>
7171
<p><b>View all other</b> <a href="lwg-index.html#rand.eng.philox">issues</a> in [rand.eng.philox].</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#Voting">Voting</a> status.</p>
7373
<p><b>Discussion:</b></p>
7474
<p>
7575
Philox engines don't seem to require floating-point operations or support from the operating system,
7676
so they are probably suitable for freestanding. However, as <a href="https://wg21.link/P2976R1" title=" Freestanding Library: algorithm, numeric, and random">P2976R1</a> was finished before
7777
the adoption of <a href="https://wg21.link/P2075R6" title=" Philox as an extension of the C++ RNG engines">P2075R6</a>, these engines are not made freestanding yet.
7878
</p>
7979

80+
<p><i>[2025-06-13; Reflector poll]</i></p>
81+
82+
<p>
83+
Set status to Tentatively Ready after ten votes in favour during reflector poll.
84+
</p>
85+
86+
8087

8188
<p id="res-4224"><b>Proposed resolution:</b></p>
8289
<p>

0 commit comments

Comments
 (0)