From c421a3d7ce0bea17788a0adbf47847a97709a6f3 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sat, 4 May 2024 13:38:00 -0400 Subject: [PATCH] AK: Add missing using statements to Find.h --- AK/Find.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/AK/Find.h b/AK/Find.h index b417c90a20..cb5ff75e37 100644 --- a/AK/Find.h +++ b/AK/Find.h @@ -37,3 +37,9 @@ requires(requires(TIterator it) { it.index(); }) } } + +#if USING_AK_GLOBALLY +using AK::find; +using AK::find_if; +using AK::find_index; +#endif