Skip to content

Commit 59e634a

Browse files
authored
[func.require] Add missing formatting of subscript index (#7071)
1 parent a24620e commit 59e634a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/utilities.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10825,7 +10825,7 @@
1082510825
\item \tcode{(t$_1$.*f)(t$_2$, $\dotsc$, t$_N$)} when \tcode{f} is a pointer to a
1082610826
member function of a class \tcode{T}
1082710827
and
10828-
\tcode{is_same_v<T, remove_cvref_t<decltype(t1)>> ||}
10828+
\tcode{is_same_v<T, remove_cvref_t<decltype(t$_1$)>> ||}
1082910829
\tcode{is_base_of_v<T, remove_cvref_t<decltype(t$_1$)>>} is \tcode{true};
1083010830

1083110831
\item \tcode{(t$_1$.get().*f)(t$_2$, $\dotsc$, t$_N$)} when \tcode{f} is a pointer to a
@@ -10839,7 +10839,7 @@
1083910839
\item \tcode{t$_1$.*f} when $N = 1$ and \tcode{f} is a pointer to
1084010840
data member of a class \tcode{T}
1084110841
and
10842-
\tcode{is_same_v<T, remove_cvref_t<decltype(t1)>> ||}
10842+
\tcode{is_same_v<T, remove_cvref_t<decltype(t$_1$)>> ||}
1084310843
\tcode{is_base_of_v<T, remove_cvref_t<decltype(t$_1$)>>} is \tcode{true};
1084410844

1084510845
\item \tcode{t$_1$.get().*f} when $N = 1$ and \tcode{f} is a pointer to

0 commit comments

Comments
 (0)