diff options
Diffstat (limited to 'pstl/test/std/algorithms')
4 files changed, 4 insertions, 4 deletions
diff --git a/pstl/test/std/algorithms/alg.modifying.operations/alg.partitions/partition_copy.pass.cpp b/pstl/test/std/algorithms/alg.modifying.operations/alg.partitions/partition_copy.pass.cpp index c27e51ca798..17098514328 100644 --- a/pstl/test/std/algorithms/alg.modifying.operations/alg.partitions/partition_copy.pass.cpp +++ b/pstl/test/std/algorithms/alg.modifying.operations/alg.partitions/partition_copy.pass.cpp @@ -39,7 +39,7 @@ struct test_partition_copy EXPECT_TRUE(std::distance(true_first, actual_ret.first) == std::count_if(first, last, unary_op), "partition_copy has wrong effect from true sequence"); EXPECT_TRUE(std::distance(false_first, actual_ret.second) == - std::count_if(first, last, __pstl::internal::not_pred<UnaryOp>(unary_op)), + std::count_if(first, last, __pstl::__internal::__not_pred<UnaryOp>(unary_op)), "partition_copy has wrong effect from false sequence"); } diff --git a/pstl/test/std/algorithms/alg.modifying.operations/replace.pass.cpp b/pstl/test/std/algorithms/alg.modifying.operations/replace.pass.cpp index 5aeaac88812..7784d386423 100644 --- a/pstl/test/std/algorithms/alg.modifying.operations/replace.pass.cpp +++ b/pstl/test/std/algorithms/alg.modifying.operations/replace.pass.cpp @@ -151,7 +151,7 @@ struct test_non_const int32_t main() { - test<int32_t, float32_t>(__pstl::internal::equal_value<int32_t>(666)); + test<int32_t, float32_t>(__pstl::__internal::__equal_value<int32_t>(666)); test<uint16_t, uint8_t>([](const uint16_t& elem) { return elem % 3 < 2; }); test<float64_t, int64_t>([](const float64_t& elem) { return elem * elem - 3.5 * elem > 10; }); test<copy_int, copy_int>([](const copy_int& val) { return val.value / 5 > 2; }); diff --git a/pstl/test/std/algorithms/alg.sorting/alg.set.operations/includes.pass.cpp b/pstl/test/std/algorithms/alg.sorting/alg.set.operations/includes.pass.cpp index b18bb5f69f0..fff2284fe03 100644 --- a/pstl/test/std/algorithms/alg.sorting/alg.set.operations/includes.pass.cpp +++ b/pstl/test/std/algorithms/alg.sorting/alg.set.operations/includes.pass.cpp @@ -103,7 +103,7 @@ int32_t main() { - test_includes<float64_t, float64_t>(__pstl::internal::pstl_less()); + test_includes<float64_t, float64_t>(__pstl::__internal::__pstl_less()); test_includes<Num<int64_t>, Num<int32_t>>([](const Num<int64_t>& x, const Num<int32_t>& y) { return x < y; }); std::cout << done() << std::endl; diff --git a/pstl/test/std/algorithms/alg.sorting/alg.set.operations/set.pass.cpp b/pstl/test/std/algorithms/alg.sorting/alg.set.operations/set.pass.cpp index 33b7542d4fa..6d8c0891ff7 100644 --- a/pstl/test/std/algorithms/alg.sorting/alg.set.operations/set.pass.cpp +++ b/pstl/test/std/algorithms/alg.sorting/alg.set.operations/set.pass.cpp @@ -156,7 +156,7 @@ int32_t main() { - test_set<float64_t, float64_t>(__pstl::internal::pstl_less()); + test_set<float64_t, float64_t>(__pstl::__internal::__pstl_less()); test_set<Num<int64_t>, Num<int32_t>>([](const Num<int64_t>& x, const Num<int32_t>& y) { return x < y; }); test_algo_basic_double<int32_t>(run_for_rnd_fw<test_non_const<int32_t>>()); |