diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/Resolution.h')
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/Resolution.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/Resolution.h b/Userland/Libraries/LibWeb/CSS/Resolution.h index 589d070509..be17e56431 100644 --- a/Userland/Libraries/LibWeb/CSS/Resolution.h +++ b/Userland/Libraries/LibWeb/CSS/Resolution.h @@ -32,11 +32,6 @@ public: return m_type == other.m_type && m_value == other.m_value; } - bool operator!=(Resolution const& other) const - { - return !(*this == other); - } - private: StringView unit_name() const; |