Skip to content

Commit 9add78e

Browse files
jensmaurertkoeppe
authored andcommitted
[meta.reflection.define.aggregate] Fix declarations of name-type constructors
Fixes NB US 123-187 (C++26 CD).
1 parent f8d44da commit 9add78e

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
@@ -6328,14 +6328,14 @@
63286328

63296329
\pnum
63306330
The classes \tcode{data_member_options}
6331-
and \tcode{data_member_options::\brk{}\exposid{name-type}}
6331+
and \tcode{data_member_options::\exposid{name-type}}
63326332
are consteval-only types\iref{basic.types.general},
63336333
and are not structural types\iref{temp.param}.
63346334

63356335
\begin{itemdecl}
63366336
template<class T>
63376337
requires @\libconcept{constructible_from}@<u8string, T>
6338-
consteval data_member_options::@\exposid{name-type}@(T&& value);
6338+
consteval @\exposid{name-type}@(T&& value);
63396339
\end{itemdecl}
63406340

63416341
\begin{itemdescr}
@@ -6348,7 +6348,7 @@
63486348
\begin{itemdecl}
63496349
template<class T>
63506350
requires @\libconcept{constructible_from}@<string, T>
6351-
consteval data_member_options::@\exposid{name-type}@(T&& value);
6351+
consteval @\exposid{name-type}@(T&& value);
63526352
\end{itemdecl}
63536353

63546354
\begin{itemdescr}

0 commit comments

Comments
 (0)