Skip to content

Commit

Permalink
[facet.num.get.virtuals] Whitespace fixes (#7545)
Browse files Browse the repository at this point in the history
- Indentation
- Insert space around & and | for consistency
  • Loading branch information
Andreas-Krug authored Jan 6, 2025
1 parent e92fb6d commit 685f3da
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions source/text.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2530,25 +2530,25 @@
\indexlibrarymember{num_get}{do_get}%
\begin{itemdecl}
iter_type do_get(iter_type in, iter_type end, ios_base& str,
ios_base::iostate& err, long& val) const;
ios_base::iostate& err, long& val) const;
iter_type do_get(iter_type in, iter_type end, ios_base& str,
ios_base::iostate& err, long long& val) const;
ios_base::iostate& err, long long& val) const;
iter_type do_get(iter_type in, iter_type end, ios_base& str,
ios_base::iostate& err, unsigned short& val) const;
ios_base::iostate& err, unsigned short& val) const;
iter_type do_get(iter_type in, iter_type end, ios_base& str,
ios_base::iostate& err, unsigned int& val) const;
ios_base::iostate& err, unsigned int& val) const;
iter_type do_get(iter_type in, iter_type end, ios_base& str,
ios_base::iostate& err, unsigned long& val) const;
ios_base::iostate& err, unsigned long& val) const;
iter_type do_get(iter_type in, iter_type end, ios_base& str,
ios_base::iostate& err, unsigned long long& val) const;
ios_base::iostate& err, unsigned long long& val) const;
iter_type do_get(iter_type in, iter_type end, ios_base& str,
ios_base::iostate& err, float& val) const;
ios_base::iostate& err, float& val) const;
iter_type do_get(iter_type in, iter_type end, ios_base& str,
ios_base::iostate& err, double& val) const;
ios_base::iostate& err, double& val) const;
iter_type do_get(iter_type in, iter_type end, ios_base& str,
ios_base::iostate& err, long double& val) const;
ios_base::iostate& err, long double& val) const;
iter_type do_get(iter_type in, iter_type end, ios_base& str,
ios_base::iostate& err, void*& val) const;
ios_base::iostate& err, void*& val) const;
\end{itemdecl}

\begin{itemdescr}
Expand Down Expand Up @@ -2746,7 +2746,7 @@
\begin{itemdescr}
\pnum
\effects
If \tcode{(str.flags()\&ios_base::boolalpha) == 0}
If \tcode{(str.flags() \& ios_base::boolalpha) == 0}
then input proceeds as it would for a \tcode{long}
except that if a value is being stored into \tcode{val},
the value is determined according to the following:
Expand Down Expand Up @@ -2778,7 +2778,7 @@
when seeking another character to match,
it is found that \tcode{(in == end)}.
If \tcode{val} is not set, then \tcode{err} is set to \tcode{str.failbit};
or to \tcode{(str.failbit|str.eofbit)}
or to \tcode{(str.failbit | str.eofbit)}
if the reason for the failure was that \tcode{(in == end)}.
\begin{example}
For targets \tcode{true}: \tcode{"a"} and \tcode{false}: \tcode{"abb"},
Expand Down

0 comments on commit 685f3da

Please sign in to comment.