LibDraw: Remove redundant Rect copy constructor

This commit is contained in:
Andreas Kling 2019-12-27 14:45:24 +01:00
parent 4a0fb34eb8
commit cbdd65e4d9
Notes: sideshowbarker 2024-07-19 10:36:38 +09:00

View file

@ -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
{