Skip to content

Commit 262a612

Browse files
committed
LWG4269 FIXME unique_copy passes arguments to its predicate backwards FIXME MERGE THIS FIXME MERGE THIS WITH PREVIOUS COMMIT FIXME
1 parent 5d90066 commit 262a612

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/algorithms.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7948,10 +7948,10 @@
79487948
\begin{itemize}
79497949
\setlength{\emergencystretch}{1em}
79507950
\item
7951-
\tcode{bool(pred(*i, *(i - 1)))}
7951+
\tcode{bool(pred(*(i - 1), *i))}
79527952
for the overloads in namespace \tcode{std};
79537953
\item
7954-
\tcode{bool(invoke(comp, invoke(proj, *i), invoke(proj, *(i - 1))))}
7954+
\tcode{bool(invoke(comp, invoke(proj, *(i - 1)), invoke(proj, *i)))}
79557955
for the overloads in namespace \tcode{ranges}.
79567956
\end{itemize}
79577957

0 commit comments

Comments
 (0)