Skip to content

Commit a6a1f88

Browse files
committed
LWG4443 Clean up identifier comparisons in meta::define_aggregate
Fixes US 127-190 (C++26 CD).
1 parent 47cfafc commit a6a1f88

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/meta.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6659,9 +6659,9 @@
66596659
then either:
66606660
\begin{itemize}
66616661
\item
6662-
\tcode{$N_K$ != $N_L$} is \tcode{true} or
6662+
\tcode{$N_K$} is not the same identifier as \tcode{$N_L$} or
66636663
\item
6664-
\tcode{$N_K$ == u8"_"} is \tcode{true}.
6664+
\tcode{$N_K$} is the identifier \tcode{_} (\ucode{005f} low line).
66656665
\begin{note}
66666666
Every provided identifier is unique or \tcode{"_"}.
66676667
\end{note}
@@ -6697,7 +6697,7 @@
66976697
If $N_K$ is $\bot$,
66986698
$M_K$ is an unnamed bit-field.
66996699
Otherwise, $M_K$ is a non-static data member whose name is the identifier
6700-
determined by the character sequence encoded by $N_K$ in UTF-8.
6700+
$N_K$.
67016701
\item
67026702
The type of $M_K$ is $T_K$.
67036703
\item

0 commit comments

Comments
 (0)