1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:17:35 +00:00

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

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
{