Browse Source

LibDraw: Remove redundant Rect copy constructor

Andreas Kling 5 years ago
parent
commit
cbdd65e4d9
1 changed files with 0 additions and 5 deletions
  1. 0 5
      Libraries/LibDraw/Rect.h

+ 0 - 5
Libraries/LibDraw/Rect.h

@@ -20,11 +20,6 @@ public:
         , m_size(size)
     {
     }
-    Rect(const Rect& other)
-        : m_location(other.m_location)
-        , m_size(other.m_size)
-    {
-    }
 
     bool is_null() const
     {