Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MINOR: [C++] Replace std::random_shuffle with std::shuffle (#13948)
`std::random_shuffle` was deprecated in C++14 and removed altogether in C++17 in favor of `std::shuffle`. The codebase only uses these shuffling functions in tests and benchmarks and `std::shuffle` is used in all instances except this one. Authored-by: Bryce Mecum <[email protected]> Signed-off-by: Antoine Pitrou <[email protected]>
- Loading branch information