Skip to content

Commit 6330518

Browse files
committed
[iterators, locales] Apply \placeholder macro
1 parent ddf0f80 commit 6330518

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

source/iterators.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2231,10 +2231,10 @@
22312231

22322232
\pnum
22332233
Let \placeholder{R} be \tcode{iterator_traits<Iterator>::reference}.
2234-
If \tcode{is_reference<}\placeholder{R}\tcode{>::value} is \tcode{true},
2234+
If \tcode{is_reference<\placeholder{R}>::value} is \tcode{true},
22352235
the template specialization \tcode{move_iterator<Iterator>} shall define
22362236
the nested type named \tcode{reference} as a synonym for
2237-
\tcode{remove_reference<}\placeholder{R}\tcode{>::type\&\&},
2237+
\tcode{remove_reference<\placeholder{R}>::type\&\&},
22382238
otherwise as a synonym for \placeholder{R}.
22392239

22402240
\rSec3[move.iter.requirements]{\tcode{move_iterator} requirements}

source/locales.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,14 +1006,14 @@
10061006

10071007
\pnum
10081008
Each of these functions
1009-
\tcode{is\textit{F}}
1009+
\tcode{is\placeholder{F}}
10101010
returns the result of the expression:
10111011

10121012
\begin{codeblock}
1013-
use_facet< ctype<charT> >(loc).is(ctype_base::@\textit{F}@, c)
1013+
use_facet< ctype<charT> >(loc).is(ctype_base::@\placeholder{F}@, c)
10141014
\end{codeblock}
10151015

1016-
where \tcode{\textit{F}} is the
1016+
where \tcode{\placeholder{F}} is the
10171017
\tcode{ctype_base::mask}
10181018
value corresponding to that function~(\ref{category.ctype}).\footnote{When
10191019
used in a loop, it is faster to cache the
@@ -1514,7 +1514,7 @@
15141514
namespace std {
15151515
class ctype_base {
15161516
public:
1517-
typedef @\textit{T}@ mask;
1517+
typedef @\placeholder{T}@ mask;
15181518

15191519
// numeric values are for exposition only.
15201520
static const mask space = 1 << 0;
@@ -5289,10 +5289,10 @@
52895289
\end{codeblock}
52905290

52915291
\pnum
5292-
Each of these functions \tcode{\textit{F}}
5292+
Each of these functions \tcode{\placeholder{F}}
52935293
returns the result of calling the corresponding
52945294
virtual member function
5295-
\tcode{do_\textit{F}()}.
5295+
\tcode{do_\placeholder{F}()}.
52965296

52975297
\rSec4[locale.moneypunct.virtuals]{\tcode{moneypunct} virtual functions}
52985298

0 commit comments

Comments
 (0)