1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-01 11:39:22 +00:00

AK: Add missing using statements to Find.h

This commit is contained in:
Nico Weber 2024-05-04 13:38:00 -04:00 committed by Andreas Kling
parent 4f62066ad0
commit c421a3d7ce

View File

@ -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