mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:27:45 +00:00
LibWeb: Fix broken Specificity::operator==
This commit is contained in:
parent
ae3e5e9d37
commit
fa5e8be31c
1 changed files with 2 additions and 2 deletions
|
@ -51,8 +51,8 @@ public:
|
||||||
bool operator==(const Specificity& other) const
|
bool operator==(const Specificity& other) const
|
||||||
{
|
{
|
||||||
return m_ids == other.m_ids
|
return m_ids == other.m_ids
|
||||||
|| m_classes < other.m_classes
|
|| m_classes == other.m_classes
|
||||||
|| m_tag_names < other.m_tag_names;
|
|| m_tag_names == other.m_tag_names;
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue