AK: Remove weird RefPtr(RefPtr&) constructor.

This commit is contained in:
Andreas Kling 2019-07-11 15:19:16 +02:00
parent 3d9f783e31
commit 32fb7ecef4
Notes: sideshowbarker 2024-07-19 13:20:00 +09:00

View File

@ -38,10 +38,6 @@ public:
: m_ptr(&object)
{
}
RefPtr(RefPtr& other)
: m_ptr(other.copy_ref().leak_ref())
{
}
RefPtr(RefPtr&& other)
: m_ptr(other.leak_ref())
{