Skip to content

Commit aacc4ed

Browse files
committed
Replace \term with \placeholder.
1 parent d4bc54f commit aacc4ed

File tree

4 files changed

+29
-29
lines changed

4 files changed

+29
-29
lines changed

source/access.tex

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@
408408
is
409409
\term{accessible}
410410
at
411-
\term{R},
411+
\placeholder{R},
412412
if
413413
\begin{itemize}
414414
\item
@@ -417,15 +417,15 @@
417417
would be a public member of
418418
\tcode{N}, or
419419
\item
420-
\term{R}
420+
\placeholder{R}
421421
occurs in a member or friend of class
422422
\tcode{N},
423423
and an invented public member of
424424
\tcode{B}
425425
would be a private or protected member of
426426
\tcode{N}, or
427427
\item
428-
\term{R}
428+
\placeholder{R}
429429
occurs in a member or friend of a class
430430
\tcode{P}
431431
derived from
@@ -442,13 +442,13 @@
442442
is a base class of
443443
\tcode{S}
444444
accessible at
445-
\term{R}
445+
\placeholder{R}
446446
and
447447
\tcode{S}
448448
is a base class of
449449
\tcode{N}
450450
accessible at
451-
\term{R}.
451+
\placeholder{R}.
452452
\end{itemize}
453453

454454
\begin{example}
@@ -509,7 +509,7 @@
509509
A member
510510
\tcode{m}
511511
is accessible at the point
512-
\term{R}
512+
\placeholder{R}
513513
when named in class
514514
\tcode{N}
515515
if
@@ -524,7 +524,7 @@
524524
as a member of
525525
\tcode{N}
526526
is private, and
527-
\term{R}
527+
\placeholder{R}
528528
occurs in a member or friend of class
529529
\tcode{N},
530530
or
@@ -533,7 +533,7 @@
533533
as a member of
534534
\tcode{N}
535535
is protected, and
536-
\term{R}
536+
\placeholder{R}
537537
occurs in a member or friend of class
538538
\tcode{N},
539539
or in a member of a class
@@ -551,11 +551,11 @@
551551
of
552552
\tcode{N}
553553
that is accessible at
554-
\term{R},
554+
\placeholder{R},
555555
and
556556
\tcode{m}
557557
is accessible at
558-
\term{R}
558+
\placeholder{R}
559559
when named in class
560560
\tcode{B}.
561561
\begin{example}

source/expressions.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2129,7 +2129,7 @@
21292129
\indextext{\idxcode{type_info}}%
21302130
\indexlibrary{\idxcode{type_info}}%
21312131
\tcode{const} \tcode{std::type_info}~(\ref{type.info}) and dynamic type \tcode{const}
2132-
\tcode{std::type_info} or \tcode{const} \term{name} where \term{name} is an
2132+
\tcode{std::type_info} or \tcode{const} \placeholder{name} where \placeholder{name} is an
21332133
\impldef{derived type for \tcode{typeid}} class publicly derived from
21342134
\tcode{std::type_info} which preserves the behavior described
21352135
in~\ref{type.info}.\footnote{The recommended name for such a class is

source/lib-intro.tex

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@
637637
\indextext{type!enumerated}%
638638

639639
\pnum
640-
The bitmask type \term{bitmask} can be written:
640+
The bitmask type \placeholder{bitmask} can be written:
641641

642642
\begin{codeblock}
643643
// For exposition only.
@@ -652,28 +652,28 @@
652652
inline constexpr @$\tcode{\placeholder{bitmask C}}_{3}$@(@$\tcode{\placeholder{V}}_{3}{}$@);
653653
.....
654654

655-
constexpr @\term{bitmask}{}@ operator&(@\term{bitmask}{}@ X, @\term{bitmask}{}@ Y) {
656-
return static_cast<@\term{bitmask}{}@>(
655+
constexpr @\placeholder{bitmask}{}@ operator&(@\placeholder{bitmask}{}@ X, @\placeholder{bitmask}{}@ Y) {
656+
return static_cast<@\placeholder{bitmask}{}@>(
657657
static_cast<int_type>(X) & static_cast<int_type>(Y));
658658
}
659-
constexpr @\term{bitmask}{}@ operator|(@\term{bitmask}{}@ X, @\term{bitmask}{}@ Y) {
660-
return static_cast<@\term{bitmask}{}@>(
659+
constexpr @\placeholder{bitmask}{}@ operator|(@\placeholder{bitmask}{}@ X, @\placeholder{bitmask}{}@ Y) {
660+
return static_cast<@\placeholder{bitmask}{}@>(
661661
static_cast<int_type>(X) | static_cast<int_type>(Y));
662662
}
663-
constexpr @\term{bitmask}{}@ operator^(@\term{bitmask}{}@ X, @\term{bitmask}{}@ Y){
664-
return static_cast<@\term{bitmask}{}@>(
663+
constexpr @\placeholder{bitmask}{}@ operator^(@\placeholder{bitmask}{}@ X, @\placeholder{bitmask}{}@ Y){
664+
return static_cast<@\placeholder{bitmask}{}@>(
665665
static_cast<int_type>(X) ^ static_cast<int_type>(Y));
666666
}
667-
constexpr @\term{bitmask}{}@ operator~(@\term{bitmask}{}@ X){
668-
return static_cast<@\term{bitmask}{}@>(~static_cast<int_type>(X));
667+
constexpr @\placeholder{bitmask}{}@ operator~(@\placeholder{bitmask}{}@ X){
668+
return static_cast<@\placeholder{bitmask}{}@>(~static_cast<int_type>(X));
669669
}
670-
@\term{bitmask}{}@& operator&=(@\term{bitmask}{}@& X, @\term{bitmask}{}@ Y){
670+
@\placeholder{bitmask}{}@& operator&=(@\placeholder{bitmask}{}@& X, @\placeholder{bitmask}{}@ Y){
671671
X = X & Y; return X;
672672
}
673-
@\term{bitmask}{}@& operator|=(@\term{bitmask}{}@& X, @\term{bitmask}{}@ Y) {
673+
@\placeholder{bitmask}{}@& operator|=(@\placeholder{bitmask}{}@& X, @\placeholder{bitmask}{}@ Y) {
674674
X = X | Y; return X;
675675
}
676-
@\term{bitmask}{}@& operator^=(@\term{bitmask}{}@& X, @\term{bitmask}{}@ Y) {
676+
@\placeholder{bitmask}{}@& operator^=(@\placeholder{bitmask}{}@& X, @\placeholder{bitmask}{}@ Y) {
677677
X = X ^ Y; return X;
678678
}
679679
\end{codeblock}

source/utilities.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17433,12 +17433,12 @@
1743317433
constexpr ToDuration round(const duration<Rep, Period>& d);
1743417434

1743517435
// convenience typedefs
17436-
using nanoseconds = duration<@\term{signed integer type of at least 64 bits}@, nano>;
17437-
using microseconds = duration<@\term{signed integer type of at least 55 bits}@, micro>;
17438-
using milliseconds = duration<@\term{signed integer type of at least 45 bits}@, milli>;
17439-
using seconds = duration<@\term{signed integer type of at least 35 bits}@>;
17440-
using minutes = duration<@\term{signed integer type of at least 29 bits}@, ratio< 60>>;
17441-
using hours = duration<@\term{signed integer type of at least 23 bits}@, ratio<3600>>;
17436+
using nanoseconds = duration<@\placeholder{signed integer type of at least 64 bits}@, nano>;
17437+
using microseconds = duration<@\placeholder{signed integer type of at least 55 bits}@, micro>;
17438+
using milliseconds = duration<@\placeholder{signed integer type of at least 45 bits}@, milli>;
17439+
using seconds = duration<@\placeholder{signed integer type of at least 35 bits}@>;
17440+
using minutes = duration<@\placeholder{signed integer type of at least 29 bits}@, ratio< 60>>;
17441+
using hours = duration<@\placeholder{signed integer type of at least 23 bits}@, ratio<3600>>;
1744217442

1744317443
// \ref{time.point.nonmember}, \tcode{time_point} arithmetic
1744417444
template <class Clock, class Duration1, class Rep2, class Period2>

0 commit comments

Comments
 (0)