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 45714571that are part of the library.
45724572The semantics of the constructor used in user code is as specified.
45734573\end{footnote}
4574- If \tcode{noskipws} is zero and
4574+ If \tcode{noskipws} is \tcode{false} and
45754575\tcode{is.flags() \& ios_base::skipws}
45764576is nonzero, the function extracts and discards each character as long as
45774577the next available input character \tcode{c} is a whitespace character.
46004600To decide if the character \tcode{c} is a whitespace character,
46014601the constructor performs as if it executes the following code fragment:
46024602\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))
46054605 // \tcode{c} is a whitespace character.
46064606\end{codeblock}
46074607
46104610\tcode{is.good()}
46114611is
46124612\tcode{true},
4613- \tcode{\exposid{ok_} != false}
4613+ \tcode{\exposid{ok_} != false};
46144614otherwise,
46154615\tcode{\exposid{ok_} == false}.
46164616During preparation, the constructor may call
You can’t perform that action at this time.
0 commit comments