Skip to content

Commit

Permalink
[format.parse.ctx] improve readability of paragraphs 12 and 14
Browse files Browse the repository at this point in the history
  • Loading branch information
Eisenwave committed Feb 22, 2024
1 parent 30debb0 commit 3b6486a
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions source/utilities.tex
Original file line number Diff line number Diff line change
Expand Up @@ -17385,8 +17385,8 @@

\pnum
\remarks
Call expressions where \tcode{id >= num_args_} is \tcode{true} are not
core constant expressions\iref{expr.const}.
A call to this function is a core constant expression\iref{expr.const} only if
\tcode{id < num_args_} is \tcode{true}.
\end{itemdescr}

\indexlibrarymember{check_dynamic_spec}{basic_format_parse_context}%
Expand Down Expand Up @@ -17415,12 +17415,14 @@

\pnum
\remarks
Call expressions where
\tcode{id >= num_args_} or
A call to this function is a core constant expression only if
\begin{itemize}
\item
\tcode{id < num_args_} is \tcode{true} and
\item
the type of the corresponding format argument
(after conversion to \tcode{basic_format_arg<Context>})
is not one of the types in \tcode{Ts...}
are not core constant expressions\iref{expr.const}.
(after conversion to \tcode{basic_format_args<Context>}) is one of the types in \tcode{Ts...}.
\end{itemize}
\end{itemdescr}

\indexlibrarymember{check_dynamic_spec_integral}{basic_format_parse_context}%
Expand Down

0 comments on commit 3b6486a

Please sign in to comment.