Skip to content

Commit 7d0d915

Browse files
jwakelytkoeppe
authored andcommitted
[func.require] Use math font for non-code conditions
N is not a C++ entity, it refers to the N suffix of tN, and the equality is mathematical not a C++ operator.
1 parent 9020f74 commit 7d0d915

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/utilities.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10644,15 +10644,15 @@
1064410644
member function of a class \tcode{T}
1064510645
and \tcode{t$_1$} does not satisfy the previous two items;
1064610646

10647-
\item \tcode{t$_1$.*f} when \tcode{N == 1} and \tcode{f} is a pointer to
10647+
\item \tcode{t$_1$.*f} when $N = 1$ and \tcode{f} is a pointer to
1064810648
data member of a class \tcode{T}
1064910649
and \tcode{is_base_of_v<T, remove_reference_t<decltype(t$_1$)>>} is \tcode{true};
1065010650

10651-
\item \tcode{t$_1$.get().*f} when \tcode{N == 1} and \tcode{f} is a pointer to
10651+
\item \tcode{t$_1$.get().*f} when $N = 1$ and \tcode{f} is a pointer to
1065210652
data member of a class \tcode{T}
1065310653
and \tcode{remove_cvref_t<decltype(t$_1$)>} is a specialization of \tcode{reference_wrapper};
1065410654

10655-
\item \tcode{(*t$_1$).*f} when \tcode{N == 1} and \tcode{f} is a pointer to
10655+
\item \tcode{(*t$_1$).*f} when $N = 1$ and \tcode{f} is a pointer to
1065610656
data member of a class \tcode{T}
1065710657
and \tcode{t$_1$} does not satisfy the previous two items;
1065810658

0 commit comments

Comments
 (0)