1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 09:34:57 +09:00

AK: Add missing const in Span::operator==.

This commit is contained in:
asynts 2020-09-20 17:48:00 +02:00 committed by Andreas Kling
parent 1a277ac291
commit ae9f0e1cd8
Notes: sideshowbarker 2024-07-19 02:18:55 +09:00

View file

@ -209,7 +209,7 @@ public:
return *this;
}
bool operator==(Span<T> other) const
bool operator==(Span<const T> other) const
{
if (size() != other.size())
return false;