File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 4571
4571
that are part of the library.
4572
4572
The semantics of the constructor used in user code is as specified.
4573
4573
\end{footnote}
4574
- If \tcode{noskipws} is zero and
4574
+ If \tcode{noskipws} is \tcode{false} and
4575
4575
\tcode{is.flags() \& ios_base::skipws}
4576
4576
is nonzero, the function extracts and discards each character as long as
4577
4577
the next available input character \tcode{c} is a whitespace character.
4600
4600
To decide if the character \tcode{c} is a whitespace character,
4601
4601
the constructor performs as if it executes the following code fragment:
4602
4602
\begin{codeblock}
4603
- const ctype<charT>& ctype = use_facet<ctype<charT>>(is.getloc());
4604
- if (ctype .is(ctype .space, c) != 0 )
4603
+ const ctype<charT>& ct = use_facet<ctype<charT>>(is.getloc());
4604
+ if (ct .is(ct .space, c))
4605
4605
// \tcode{c} is a whitespace character.
4606
4606
\end{codeblock}
4607
4607
4610
4610
\tcode{is.good()}
4611
4611
is
4612
4612
\tcode{true},
4613
- \tcode{\exposid{ok_} != false}
4613
+ \tcode{\exposid{ok_} != false};
4614
4614
otherwise,
4615
4615
\tcode{\exposid{ok_} == false}.
4616
4616
During preparation, the constructor may call
You can’t perform that action at this time.
0 commit comments