mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:17:46 +00:00
AK: Simplify Utf16View::operator==(Utf16View)
This commit is contained in:
parent
f0b3a06746
commit
87290e300e
2 changed files with 1 additions and 16 deletions
|
@ -70,7 +70,7 @@ public:
|
|||
{
|
||||
}
|
||||
|
||||
bool operator==(Utf16View const& other) const;
|
||||
bool operator==(Utf16View const& other) const { return m_code_units == other.m_code_units; }
|
||||
|
||||
enum class AllowInvalidCodeUnits {
|
||||
Yes,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue