diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2017-03-23 14:20:43 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2017-03-23 14:20:43 +0000 |
commit | c53e96cb0739f2f6efa62b254c04021520fa289b (patch) | |
tree | ab88eea4810c40034643e2b1abeca66cb694b283 /libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle | |
parent | db4b03220516c498025ec088c39b0d5dd25967ff (diff) | |
download | bcm5719-llvm-c53e96cb0739f2f6efa62b254c04021520fa289b.tar.gz bcm5719-llvm-c53e96cb0739f2f6efa62b254c04021520fa289b.zip |
Use 'REQUIRES: c++98 || c++03 || c++11 || c++14' instead of the deprecated 'REQUIRES-ANY: c++98, c++03, c++11, c++14'
llvm-svn: 298600
Diffstat (limited to 'libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle')
2 files changed, 2 insertions, 2 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 77d7153e4e2..e2abf7cce42 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,7 +8,7 @@ //===----------------------------------------------------------------------===// // <algorithm> -// REQUIRES-ANY: c++98, c++03, c++11, c++14 +// REQUIRES: 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 2424c7732db..313b6bac402 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,7 +8,7 @@ //===----------------------------------------------------------------------===// // <algorithm> -// REQUIRES-ANY: c++98, c++03, c++11, c++14 +// REQUIRES: c++98 || c++03 || c++11 || c++14 // template<RandomAccessIterator Iter, Callable<auto, Iter::difference_type> Rand> // requires ShuffleIterator<Iter> |