aboutsummaryrefslogtreecommitdiff
path: root/libcxx/test/std/algorithms
diff options
context:
space:
mode:
authorA. Jiang <de34@live.cn>2025-05-08 03:20:43 +0800
committerGitHub <noreply@github.com>2025-05-07 15:20:43 -0400
commitfc281e1b4fcd32f78ed202fbdc92c1816a80e078 (patch)
tree112b0cb598ecb31e475b2347b7563f07e7ea176a /libcxx/test/std/algorithms
parent74c0422cfeac42c83b82a3ff5c0c0cde849bd240 (diff)
downloadllvm-fc281e1b4fcd32f78ed202fbdc92c1816a80e078.zip
llvm-fc281e1b4fcd32f78ed202fbdc92c1816a80e078.tar.gz
llvm-fc281e1b4fcd32f78ed202fbdc92c1816a80e078.tar.bz2
[libc++][docs] Confirm that P3136R1 Retiring niebloids is Complete (#135932)
As libc++ has been implementing niebloids as CPOs since LLVM 14 due to https://reviews.llvm.org/D116570. Also changes some comments in test files to use the formal term "algorithm function object". Closes #118133.
Diffstat (limited to 'libcxx/test/std/algorithms')
-rw-r--r--libcxx/test/std/algorithms/ranges_robust_against_omitting_invoke.pass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/algorithms/ranges_robust_against_omitting_invoke.pass.cpp b/libcxx/test/std/algorithms/ranges_robust_against_omitting_invoke.pass.cpp
index ca87f6e..a975031 100644
--- a/libcxx/test/std/algorithms/ranges_robust_against_omitting_invoke.pass.cpp
+++ b/libcxx/test/std/algorithms/ranges_robust_against_omitting_invoke.pass.cpp
@@ -35,7 +35,7 @@ struct Bar {
Bar create() const { return Bar(); }
};
-// Invokes both the (iterator, sentinel, ...) and the (range, ...) overloads of the given niebloid.
+// Invokes both the (iterator, sentinel, ...) and the (range, ...) overloads of the given algorithm function object.
// (in, ...)
template <class Func, std::ranges::range Input, class... Args>