From 6c1cf395f2d1080d717392e14f578c8ba5e8ddbe Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 27 May 2020 11:50:06 +1000 Subject: Cleanup: remove unnecessary copy constructor Caused deprecated-copy warnings as it wasn't used. --- intern/ghost/GHOST_Rect.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'intern/ghost/GHOST_Rect.h') diff --git a/intern/ghost/GHOST_Rect.h b/intern/ghost/GHOST_Rect.h index 88053f83fb9..13632a1c03b 100644 --- a/intern/ghost/GHOST_Rect.h +++ b/intern/ghost/GHOST_Rect.h @@ -48,14 +48,6 @@ class GHOST_Rect { { } - /** - * Copy constructor. - * \param r rectangle to copy - */ - GHOST_Rect(const GHOST_Rect &r) : m_l(r.m_l), m_t(r.m_t), m_r(r.m_r), m_b(r.m_b) - { - } - /** * Destructor. */ -- cgit v1.2.3