Skip to content

Commit 685f3da

Browse files
authored
[facet.num.get.virtuals] Whitespace fixes (#7545)
- Indentation - Insert space around & and | for consistency
1 parent e92fb6d commit 685f3da

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

source/text.tex

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2530,25 +2530,25 @@
25302530
\indexlibrarymember{num_get}{do_get}%
25312531
\begin{itemdecl}
25322532
iter_type do_get(iter_type in, iter_type end, ios_base& str,
2533-
ios_base::iostate& err, long& val) const;
2533+
ios_base::iostate& err, long& val) const;
25342534
iter_type do_get(iter_type in, iter_type end, ios_base& str,
2535-
ios_base::iostate& err, long long& val) const;
2535+
ios_base::iostate& err, long long& val) const;
25362536
iter_type do_get(iter_type in, iter_type end, ios_base& str,
2537-
ios_base::iostate& err, unsigned short& val) const;
2537+
ios_base::iostate& err, unsigned short& val) const;
25382538
iter_type do_get(iter_type in, iter_type end, ios_base& str,
2539-
ios_base::iostate& err, unsigned int& val) const;
2539+
ios_base::iostate& err, unsigned int& val) const;
25402540
iter_type do_get(iter_type in, iter_type end, ios_base& str,
2541-
ios_base::iostate& err, unsigned long& val) const;
2541+
ios_base::iostate& err, unsigned long& val) const;
25422542
iter_type do_get(iter_type in, iter_type end, ios_base& str,
2543-
ios_base::iostate& err, unsigned long long& val) const;
2543+
ios_base::iostate& err, unsigned long long& val) const;
25442544
iter_type do_get(iter_type in, iter_type end, ios_base& str,
2545-
ios_base::iostate& err, float& val) const;
2545+
ios_base::iostate& err, float& val) const;
25462546
iter_type do_get(iter_type in, iter_type end, ios_base& str,
2547-
ios_base::iostate& err, double& val) const;
2547+
ios_base::iostate& err, double& val) const;
25482548
iter_type do_get(iter_type in, iter_type end, ios_base& str,
2549-
ios_base::iostate& err, long double& val) const;
2549+
ios_base::iostate& err, long double& val) const;
25502550
iter_type do_get(iter_type in, iter_type end, ios_base& str,
2551-
ios_base::iostate& err, void*& val) const;
2551+
ios_base::iostate& err, void*& val) const;
25522552
\end{itemdecl}
25532553

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

0 commit comments

Comments
 (0)