Skip to content

Commit

Permalink
Test inplace_merge with libc++ version >= 6
Browse files Browse the repository at this point in the history
  • Loading branch information
msimberg committed Dec 18, 2017
1 parent 6b7643c commit 3603ec8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/parallel/algorithms/inplace_merge.cpp
Expand Up @@ -47,7 +47,7 @@ int hpx_main(boost::program_options::variables_map& vm)
std::cout << "using seed: " << seed << std::endl;
std::srand(seed);

#if !defined(_LIBCPP_VERSION)
#if !defined(_LIBCPP_VERSION) || (_LIBCPP_VERSION >= 6)
inplace_merge_test();
inplace_merge_exception_test();
inplace_merge_bad_alloc_test();
Expand Down

0 comments on commit 3603ec8

Please sign in to comment.