diff options
Diffstat (limited to 'Userland/Libraries/LibGfx/Size.h')
-rw-r--r-- | Userland/Libraries/LibGfx/Size.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Userland/Libraries/LibGfx/Size.h b/Userland/Libraries/LibGfx/Size.h index dc8722048b..8054b5c71d 100644 --- a/Userland/Libraries/LibGfx/Size.h +++ b/Userland/Libraries/LibGfx/Size.h @@ -99,12 +99,6 @@ public: return width() == other.width() && height() == other.height(); } - template<class U> - [[nodiscard]] constexpr bool operator!=(Size<U> const& other) const - { - return !(*this == other); - } - constexpr Size<T>& operator-=(Size<T> const& other) { m_width -= other.m_width; |