diff options
author | Louis Dionne <ldionne.2@gmail.com> | 2024-09-16 15:06:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-16 15:06:20 -0400 |
commit | 09e3a360581dc36d0820d3fb6da9bd7cfed87b5d (patch) | |
tree | 73ede9c12022fdb66dfca29777fa134a3c21e82a /libcxx/test/std/algorithms/alg.modifying.operations | |
parent | 1bfc3d0de591b6b4e18ee720bd24f58e45d597ef (diff) | |
download | llvm-09e3a360581dc36d0820d3fb6da9bd7cfed87b5d.zip llvm-09e3a360581dc36d0820d3fb6da9bd7cfed87b5d.tar.gz llvm-09e3a360581dc36d0820d3fb6da9bd7cfed87b5d.tar.bz2 |
[libc++][modules] Fix missing and incorrect includes (#108850)
This patch adds a large number of missing includes in the libc++ headers
and the test suite. Those were found as part of the effort to move
towards a mostly monolithic top-level std module.
Diffstat (limited to 'libcxx/test/std/algorithms/alg.modifying.operations')
-rw-r--r-- | libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle_urng.pass.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle_urng.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle_urng.pass.cpp index d5f162b..f1ba7d4 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle_urng.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle_urng.pass.cpp @@ -13,8 +13,9 @@ // UniformRandomNumberGenerator& g); #include <algorithm> -#include <random> #include <cassert> +#include <random> +#include <utility> #include "test_macros.h" |