From ae9f0e1cd8b846684cae013b916c61553f125811 Mon Sep 17 00:00:00 2001 From: asynts Date: Sun, 20 Sep 2020 17:48:00 +0200 Subject: [PATCH] AK: Add missing const in Span::operator==. --- AK/Span.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/Span.h b/AK/Span.h index 0852cf9b312..a72bc4caaf7 100644 --- a/AK/Span.h +++ b/AK/Span.h @@ -209,7 +209,7 @@ public: return *this; } - bool operator==(Span other) const + bool operator==(Span other) const { if (size() != other.size()) return false;