File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change 16142
16142
\begin{itemdescr}
16143
16143
\pnum
16144
16144
\effects
16145
- If \tcode{indexing_ != manual}, equivalent to:
16145
+ If \tcode{indexing_ != manual} is \tcode{true} , equivalent to:
16146
16146
\begin{codeblock}
16147
16147
if (indexing_ == unknown)
16148
16148
indexing_ = automatic;
16151
16151
16152
16152
\pnum
16153
16153
\throws
16154
- \tcode{format_error} if \tcode{indexing_ == manual}
16154
+ \tcode{format_error} if \tcode{indexing_ == manual} is \tcode{true}
16155
16155
which indicates mixing of automatic and manual argument indexing.
16156
+
16157
+ \pnum
16158
+ \remarks
16159
+ Let \tcode{\placeholder{cur-arg-id}} be the value of \tcode{next_arg_id_} prior to this call.
16160
+ Call expressions where \tcode{\placeholder{cur-arg-id} >= num_args_} is \tcode{true}
16161
+ are not core constant expressions\iref{expr.const}.
16156
16162
\end{itemdescr}
16157
16163
16158
16164
\indexlibrarymember{check_arg_id}{basic_format_parse_context}%
16163
16169
\begin{itemdescr}
16164
16170
\pnum
16165
16171
\effects
16166
- If \tcode{indexing_ != automatic}, equivalent to:
16172
+ If \tcode{indexing_ != automatic} is \tcode{true} , equivalent to:
16167
16173
\begin{codeblock}
16168
16174
if (indexing_ == unknown)
16169
16175
indexing_ = manual;
@@ -16172,12 +16178,12 @@
16172
16178
\pnum
16173
16179
\throws
16174
16180
\tcode{format_error} if
16175
- \tcode{indexing_ == automatic} which indicates mixing of automatic and
16176
- manual argument indexing.
16181
+ \tcode{indexing_ == automatic} is \tcode{true}
16182
+ which indicates mixing of automatic and manual argument indexing.
16177
16183
16178
16184
\pnum
16179
16185
\remarks
16180
- Call expressions where \tcode{id >= num_args_} are not
16186
+ Call expressions where \tcode{id >= num_args_} is \tcode{true} are not
16181
16187
core constant expressions\iref{expr.const}.
16182
16188
\end{itemdescr}
16183
16189
You can’t perform that action at this time.
0 commit comments