Skip to content

Commit 824173b

Browse files
committed
[strings] Improved indexing of macros
1 parent 4a91f70 commit 824173b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/strings.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5217,7 +5217,7 @@
52175217
\tcode{invalid_argument} if \tcode{strtol}, \tcode{strtoul},
52185218
\tcode{strtoll}, or \tcode{strtoull} reports that no conversion can be
52195219
performed. Throws \tcode{out_of_range} if \tcode{strtol}, \tcode{strtoul},
5220-
\tcode{strtoll} or \tcode{strtoull} sets \tcode{errno} to \tcode{ERANGE},
5220+
\tcode{strtoll} or \tcode{strtoull} sets \tcode{\libmacro{errno}} to \tcode{ERANGE},
52215221
or if the converted value is outside the range of representable values
52225222
for the return type.
52235223
\end{itemdescr}
@@ -5252,7 +5252,7 @@
52525252
\tcode{invalid_argument} if \tcode{strtof}, \tcode{strtod}, or
52535253
\tcode{strtold} reports that no conversion can be performed. Throws
52545254
\tcode{out_of_range} if \tcode{strtof}, \tcode{strtod}, or
5255-
\tcode{strtold} sets \tcode{errno} to \tcode{ERANGE}
5255+
\tcode{strtold} sets \tcode{\libmacro{errno}} to \tcode{ERANGE}
52565256
or if the converted value is outside the range of representable
52575257
values for the return type.
52585258
\end{itemdescr}
@@ -5341,7 +5341,7 @@
53415341
\throws
53425342
\tcode{invalid_argument} if \tcode{wcstof}, \tcode{wcstod}, or \tcode{wcstold} reports that no
53435343
conversion can be performed. Throws \tcode{out_of_range} if \tcode{wcstof}, \tcode{wcstod}, or
5344-
\tcode{wcstold} sets \tcode{errno} to \tcode{ERANGE}.
5344+
\tcode{wcstold} sets \tcode{\libmacro{errno}} to \tcode{ERANGE}.
53455345
\end{itemdescr}
53465346

53475347
\indexlibraryglobal{to_wstring}%
@@ -5500,7 +5500,7 @@
55005500
size_t strlen(const char* s); // freestanding
55015501
}
55025502

5503-
#define NULL @\textit{see \ref{support.types.nullptr}}@ // freestanding
5503+
#define @\libmacro{NULL}@ @\textit{see \ref{support.types.nullptr}}@ // freestanding
55045504
\end{codeblock}
55055505

55065506
\pnum

0 commit comments

Comments
 (0)