Cleanup: remove unnecessary copy constructor

Caused deprecated-copy warnings as it wasn't used.
This commit is contained in:
Campbell Barton 2020-05-27 11:50:06 +10:00
parent a739dc67ef
commit 6c1cf395f2
1 changed files with 0 additions and 8 deletions

View File

@ -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.
*/