Skip to content

Commit

Permalink
[locale.money.get.virtuals,re.traits] Insert spaces around | for cons…
Browse files Browse the repository at this point in the history
…istency (#7568)
  • Loading branch information
Andreas-Krug authored Jan 17, 2025
1 parent fdeb1c7 commit e18377d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/text.tex
Original file line number Diff line number Diff line change
Expand Up @@ -4198,8 +4198,8 @@
obtained from the locale returned by \tcode{str.getloc()}, and
\tcode{str.flags()}.
If a valid sequence is recognized, does not change \tcode{err};
otherwise, sets \tcode{err} to \tcode{(err|str.failbit)}, or
\tcode{(err|str.failbit|str.eof\-bit)} if no more characters are available,
otherwise, sets \tcode{err} to \tcode{(err | str.failbit)}, or
\tcode{(err | str.failbit | str.eof\-bit)} if no more characters are available,
and does not change \tcode{units} or \tcode{digits}.
Uses the pattern returned by \tcode{mp.neg_format()} to parse all values.
The result is returned as an integral value stored in \tcode{units}
Expand Down Expand Up @@ -10214,7 +10214,7 @@
regex_traits<char>::char_class_type f;
f = t.lookup_classname(d.begin(), d.end());
f |= t.lookup_classname(u.begin(), u.end());
ctype_base::mask m = convert<char>(f); // \tcode{m == ctype_base::digit|ctype_base::upper}
ctype_base::mask m = convert<char>(f); // \tcode{m == ctype_base::digit | ctype_base::upper}
\end{codeblock}
\end{example}
\begin{example}
Expand Down

0 comments on commit e18377d

Please sign in to comment.