diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2017-03-23 13:43:37 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2017-03-23 13:43:37 +0000 |
commit | 0f37a410293c8b507f51556eed5954d1a2fb0499 (patch) | |
tree | 7006292095aa2f953cf5504f60406745610e524d /libcxx/test/std/algorithms/alg.modifying.operations | |
parent | f9fa62e576d63bf7b1b9ecc9665f4c9ab654ce58 (diff) | |
download | bcm5719-llvm-0f37a410293c8b507f51556eed5954d1a2fb0499.tar.gz bcm5719-llvm-0f37a410293c8b507f51556eed5954d1a2fb0499.zip |
Remove random_shuffle in C++17. Please use shuffle instead. If you have to, you cant get it back by defining _LIBCPP_ENABLE_CXX17_REMOVED_RANDOM_SHUFFLE before including any libc++ headers.
llvm-svn: 298597
Diffstat (limited to 'libcxx/test/std/algorithms/alg.modifying.operations')
2 files changed, 2 insertions, 0 deletions
diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle.pass.cpp index e24598a9bc1..77d7153e4e2 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle.pass.cpp @@ -8,6 +8,7 @@ //===----------------------------------------------------------------------===// // <algorithm> +// REQUIRES-ANY: c++98, c++03, c++11, c++14 // template<RandomAccessIterator Iter> // requires ShuffleIterator<Iter> diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle_rand.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle_rand.pass.cpp index c923d847f11..2424c7732db 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle_rand.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle_rand.pass.cpp @@ -8,6 +8,7 @@ //===----------------------------------------------------------------------===// // <algorithm> +// REQUIRES-ANY: c++98, c++03, c++11, c++14 // template<RandomAccessIterator Iter, Callable<auto, Iter::difference_type> Rand> // requires ShuffleIterator<Iter> |