Skip to content

Commit

Permalink
Remove no longer needed c++17 check
Browse files Browse the repository at this point in the history
  • Loading branch information
alugowski committed Dec 18, 2023
1 parent 18972c9 commit ccfe7fd
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/poolstl_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -517,12 +517,10 @@ TEST_CASE("execution_policies", "[execution]") {
REQUIRE(1 == std::count(poolstl::par, v.cbegin(), v.cend(), 5));
REQUIRE(1 == std::count(poolstl::par.on(pool), v.cbegin(), v.cend(), 5));
REQUIRE(1 == std::count(poolstl::seq, v.cbegin(), v.cend(), 5));
#if POOLSTL_HAVE_CXX17
REQUIRE(1 == std::count(poolstl::par_if(false), v.cbegin(), v.cend(), 5));
REQUIRE(1 == std::count(poolstl::par_if(true), v.cbegin(), v.cend(), 5));
REQUIRE(1 == std::count(poolstl::par_if(false, pool), v.cbegin(), v.cend(), 5));
REQUIRE(1 == std::count(poolstl::par_if(true, pool), v.cbegin(), v.cend(), 5));
#endif
}

TEST_CASE("iota_iter(use)", "[iterator]") {
Expand Down

0 comments on commit ccfe7fd

Please sign in to comment.