diff options
Diffstat (limited to 'libcxx/test/std/algorithms')
2 files changed, 4 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 cb83cde936e..f8e3169595d 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 @@ -14,6 +14,8 @@ // void // random_shuffle(Iter first, Iter last); +#define _LIBCPP_DISABLE_DEPRECATION_WARNINGS + #include <algorithm> #include <cassert> 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 dd5398dace1..4a81c79c8b4 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 @@ -15,6 +15,8 @@ // void // random_shuffle(Iter first, Iter last, Rand&& rand); +#define _LIBCPP_DISABLE_DEPRECATION_WARNINGS + #include <algorithm> #include <cassert> #include <cstddef> |