diff --git a/AK/RefPtr.h b/AK/RefPtr.h index bf1ddb7c0a..866cea0964 100644 --- a/AK/RefPtr.h +++ b/AK/RefPtr.h @@ -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()) {