aboutsummaryrefslogtreecommitdiff
path: root/libcxx/test/std/algorithms/ranges_robust_against_proxy_iterators.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/std/algorithms/ranges_robust_against_proxy_iterators.pass.cpp')
-rw-r--r--libcxx/test/std/algorithms/ranges_robust_against_proxy_iterators.pass.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/algorithms/ranges_robust_against_proxy_iterators.pass.cpp b/libcxx/test/std/algorithms/ranges_robust_against_proxy_iterators.pass.cpp
index 332a562ff366..b5dd483d6f71 100644
--- a/libcxx/test/std/algorithms/ranges_robust_against_proxy_iterators.pass.cpp
+++ b/libcxx/test/std/algorithms/ranges_robust_against_proxy_iterators.pass.cpp
@@ -128,8 +128,8 @@ constexpr void run_tests() {
test(std::ranges::remove_copy_if, in, out, unary_pred);
test(std::ranges::replace, in, x, x);
test(std::ranges::replace_if, in, unary_pred, x);
- //test(std::ranges::replace_copy, in, out, x, x);
- //test(std::ranges::replace_copy_if, in, out, unary_pred, x);
+ test(std::ranges::replace_copy, in, out, x, x);
+ test(std::ranges::replace_copy_if, in, out, unary_pred, x);
}
test(std::ranges::swap_ranges, in, in2);
if constexpr (std::copyable<T>) {