[libcxx-commits] [libcxx] [libc++] Implement any_of in terms of find_if (PR #207274)
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Jul 7 01:29:44 PDT 2026
================
@@ -10,33 +10,37 @@
#ifndef _LIBCPP___ALGORITHM_ANY_OF_H
#define _LIBCPP___ALGORITHM_ANY_OF_H
+#include <__algorithm/find_if.h>
#include <__config>
#include <__functional/identity.h>
-#include <__type_traits/invoke.h>
+#include <__utility/forward.h>
----------------
philnik777 wrote:
This seems unused?
https://github.com/llvm/llvm-project/pull/207274
More information about the libcxx-commits
mailing list