From 2dc31c503e9d37343f56336cf30a5f8d5fbb1348 Mon Sep 17 00:00:00 2001 From: Ali Mohammad Pur Date: Thu, 22 Jul 2021 19:13:56 +0430 Subject: AK: Convert AnyOf/AllOf to east-const style --- AK/AllOf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'AK/AllOf.h') diff --git a/AK/AllOf.h b/AK/AllOf.h index 1248ddb471..96a612decb 100644 --- a/AK/AllOf.h +++ b/AK/AllOf.h @@ -13,9 +13,9 @@ namespace AK { template constexpr bool all_of( - const SimpleIterator& begin, - const SimpleIterator& end, - const auto& predicate) + SimpleIterator const& begin, + SimpleIterator const& end, + auto const& predicate) { for (auto iter = begin; iter != end; ++iter) { if (!predicate(*iter)) { -- cgit v1.2.3