mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-12 19:02:12 +00:00
std::any_of was included by C++11, and boost::algorithm::any_of() is provided by Boost for users stuck in the pre-C++11 era. in our case, we've moved into C++23, where the ranges variant of this algorithm is available. in order to reduce the header dependency, let's switch to `std::ranges::any_of()`. Signed-off-by: Kefu Chai <kefu.chai@scylladb.com> Closes scylladb/scylladb#22503