On Mon, Jun 23, 2025 at 11:06:39AM -0400, Jason Merrill wrote: > P3491 define_static_* includes some reflection bits, but the core > functionality is independent of reflection, so let's give it its own row in > the table.
Ok. I've committed the following incremental patch then (plus created one new PR): diff --git a/htdocs/projects/cxx-status.html b/htdocs/projects/cxx-status.html index af1917f6..cf3ed9f6 100644 --- a/htdocs/projects/cxx-status.html +++ b/htdocs/projects/cxx-status.html @@ -300,23 +300,26 @@ <td> </td> </tr> <tr> - <td rowspan=5> Reflection </td> + <td rowspan=4> Reflection </td> <td> <a href="https://wg21.link/P2996">P2996R13</a></td> - <td class="unsupported" rowspan=5> <a href="https://gcc.gnu.org/PR120775">No</a></td> + <td class="unsupported" rowspan=4> <a href="https://gcc.gnu.org/PR120775">No</a></td> <td> __cpp_impl_reflection >= 202506L </td> </tr> <tr> <td> <a href="https://wg21.link/P3394">P3394R4</a></td> - <td rowspan=4></td> + <td rowspan=3></td> </tr> <tr> <td> <a href="https://wg21.link/P3293">P3293R3</a></td> </tr> <tr> - <td> <a href="https://wg21.link/P3491">P3491R3</a></td> + <td> <a href="https://wg21.link/P3096">P3096R12</a></td> </tr> <tr> - <td> <a href="https://wg21.link/P3096">P3096R12</a></td> + <td> <code>define_static_</code>{<code>string</code>,<code>object</code>,<code>array</code>} </td> + <td> <a href="https://wg21.link/P3491">P3491R3</a></td> + <td class="unsupported"> <a href="https://gcc.gnu.org/PR120783">No</a></td> + <td></td> </tr> <tr> <td> Expansion statements </td> Jakub