Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions source/meta.tex
Original file line number Diff line number Diff line change
Expand Up @@ -3760,7 +3760,7 @@
Otherwise, \tcode{true}.
\item
Otherwise, if \tcode{r} represents a type alias,
then \tcode{!has_template_arguments(s)}.
then \tcode{!has_template_arguments(r)}.
\item
Otherwise, if \tcode{r} represents an
enumerator,
Expand Down Expand Up @@ -3906,7 +3906,7 @@

\indexlibraryglobal{type_of}%
\begin{itemdecl}
consteval bool type_of(info r);
consteval info type_of(info r);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's another pull request that also fixes this one.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's another pull request that also fixes this one.

Do I need to take any action (i.e. revert this change)?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, it will still apply cleanly

\end{itemdecl}

\begin{itemdescr}
Expand Down Expand Up @@ -4150,7 +4150,7 @@
Otherwise, \tcode{false}.
\end{itemdescr}

\indexlibraryglobal{is_used_provided}%
\indexlibraryglobal{is_user_provided}%
\indexlibraryglobal{is_user_declared}%
\begin{itemdecl}
consteval bool is_user_provided(info r);
Expand Down Expand Up @@ -4332,7 +4332,7 @@
Otherwise, \tcode{false}.
\end{itemdescr}

\indexlibraryglobal{is_copmlete_type}%
\indexlibraryglobal{is_complete_type}%
\begin{itemdecl}
consteval bool is_complete_type(info r);
\end{itemdecl}
Expand Down Expand Up @@ -4799,7 +4799,7 @@
\tcode{has_parent(r)} is \tcode{true}.
\end{itemdescr}

\indexlibraryglobal{delias}%
\indexlibraryglobal{dealias}%
\begin{itemdecl}
consteval info dealias(info r);
\end{itemdecl}
Expand Down Expand Up @@ -5386,7 +5386,7 @@
\pnum
\throws
\tcode{meta::exception} unless
\tcode{bases_of(r, access:context::unchecked())}
\tcode{bases_of(r, access_context::unchecked())}
is a constant subexpression.
\end{itemdescr}

Expand Down Expand Up @@ -5604,7 +5604,7 @@
\pnum
\returns
A \tcode{vector} containing each element \tcode{e} of \tcode{members_of(type, ctx)}
such that \tcode{is_nonstatic_data_members_of(e)} is \tcode{true},
such that \tcode{is_nonstatic_data_member(e)} is \tcode{true},
preserving their order.

\pnum
Expand Down Expand Up @@ -6054,7 +6054,7 @@

\pnum
\begin{note}
If forming \tcode{Z<[:Args:]...>} leads to a failure outside of the immedaite context,
If forming \tcode{Z<[:Args:]...>} leads to a failure outside of the immediate context,
the program is ill-formed.
\end{note}

Expand Down