mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:57:45 +00:00
AK: Add missing 'const' in Span
This commit is contained in:
parent
d0637e7923
commit
af9a7b1374
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ public:
|
||||||
return this->m_values[index];
|
return this->m_values[index];
|
||||||
}
|
}
|
||||||
|
|
||||||
ALWAYS_INLINE constexpr T& operator[](size_t index) const
|
ALWAYS_INLINE constexpr const T& operator[](size_t index) const
|
||||||
{
|
{
|
||||||
return at(index);
|
return at(index);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue