Selaa lähdekoodia

LibDraw: Remove redundant Rect copy constructor

Andreas Kling 5 vuotta sitten
vanhempi
commit
cbdd65e4d9
1 muutettua tiedostoa jossa 0 lisäystä ja 5 poistoa
  1. 0 5
      Libraries/LibDraw/Rect.h

+ 0 - 5
Libraries/LibDraw/Rect.h

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