summaryrefslogtreecommitdiff
path: root/AK/AllOf.h
diff options
context:
space:
mode:
Diffstat (limited to 'AK/AllOf.h')
-rw-r--r--AK/AllOf.h6
1 files changed, 3 insertions, 3 deletions
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<typename Container, typename ValueType>
constexpr bool all_of(
- const SimpleIterator<Container, ValueType>& begin,
- const SimpleIterator<Container, ValueType>& end,
- const auto& predicate)
+ SimpleIterator<Container, ValueType> const& begin,
+ SimpleIterator<Container, ValueType> const& end,
+ auto const& predicate)
{
for (auto iter = begin; iter != end; ++iter) {
if (!predicate(*iter)) {