Skip to content

Commit

Permalink
LWG2009
Browse files Browse the repository at this point in the history
sdutoit committed Feb 26, 2012
1 parent 682fcba commit e4740e7
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions source/strings.tex
Original file line number Diff line number Diff line change
@@ -4196,8 +4196,10 @@
\pnum
\throws \tcode{invalid_argument} if \tcode{strtol}, \tcode{strtoul},
\tcode{strtoll}, or \tcode{strtoull} reports that no conversion could be
performed. Throws \tcode{out_of_range} if the converted value is outside the
range of representable values for the return type.
performed. Throws \tcode{out_of_range} if \tcode{strtol}, \tcode{strtoul},
\tcode{strtoll} or \tcode{strtoull} sets \tcode{errno} to \tcode{ERANGE},
or if the converted value is outside the range of representable values
for the return type.
\end{itemdescr}

\indexlibrary{\idxcode{stof}}%
@@ -4225,7 +4227,9 @@
\pnum
\throws \tcode{invalid_argument} if \tcode{strtod} or \tcode{strtold} reports
that no conversion could be performed. Throws \tcode{out_of_range} if
\tcode{strtod} or \tcode{strtold} sets \tcode{errno} to \tcode{ERANGE}.
\tcode{strtod} or \tcode{strtold} sets \tcode{errno} to \tcode{ERANGE}
or if the converted value is outside the range of representable
values for the return type.
\end{itemdescr}

\indexlibrary{\idxcode{to_string}}%

0 comments on commit e4740e7

Please sign in to comment.