From 11e21ce41ef781dd4440958f175a6c0ac7ee5d34 Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:51:54 +0100 Subject: [PATCH] [facet.num.get.virtuals] Minor formatting fixes - Fix indentation - Insert space around & for consistency - Insert space around | for consistency --- source/text.tex | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/source/text.tex b/source/text.tex index 9991a727cf..9ece404e19 100644 --- a/source/text.tex +++ b/source/text.tex @@ -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} @@ -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: @@ -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"},