From cbdd65e4d934c7c32f4aaf81a71410f1aeef4236 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 27 Dec 2019 14:45:24 +0100 Subject: [PATCH] LibDraw: Remove redundant Rect copy constructor --- Libraries/LibDraw/Rect.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Libraries/LibDraw/Rect.h b/Libraries/LibDraw/Rect.h index 0875859335..325625526b 100644 --- a/Libraries/LibDraw/Rect.h +++ b/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 {