Skip to content

Commit e324854

Browse files
committed
[range.cmp] Avoid introducing unused 'P'
1 parent c51c724 commit e324854

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
@@ -14582,7 +14582,7 @@
1458214582
\begin{itemize}
1458314583
\item
1458414584
If the expression \tcode{std::forward<T>(t) == std::forward<U>(u)} results in
14585-
a call to a built-in operator \tcode{==} comparing pointers of type \tcode{P}:
14585+
a call to a built-in operator \tcode{==} comparing pointers:
1458614586
returns \tcode{false} if either (the converted value of) \tcode{t} precedes
1458714587
\tcode{u} or \tcode{u} precedes \tcode{t} in the implementation-defined strict
1458814588
total order over pointers\iref{defns.order.ptr} and otherwise \tcode{true}.
@@ -14661,7 +14661,7 @@
1466114661
\begin{itemize}
1466214662
\item
1466314663
If the expression \tcode{std::forward<T>(t) < std::forward<U>(u)} results in a
14664-
call to a built-in operator \tcode{<} comparing pointers of type \tcode{P}:
14664+
call to a built-in operator \tcode{<} comparing pointers:
1466514665
returns \tcode{true} if (the converted value of) \tcode{t} precedes \tcode{u} in
1466614666
the implementation-defined strict total order over pointers\iref{defns.order.ptr}
1466714667
and otherwise \tcode{false}.

0 commit comments

Comments
 (0)