From 1f401def1806ee1f80a1460645d612a917ff2de5 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 17 Feb 2021 11:07:01 +0100 Subject: [PATCH] AK: Publish all_of() --- AK/AllOf.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AK/AllOf.h b/AK/AllOf.h index 5fe698b0f2..97c7e9e2b8 100644 --- a/AK/AllOf.h +++ b/AK/AllOf.h @@ -45,3 +45,5 @@ constexpr bool all_of( } } + +using AK::all_of;