mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
AK: Remove weird RefPtr(RefPtr&) constructor.
This commit is contained in:
parent
3d9f783e31
commit
32fb7ecef4
1 changed files with 0 additions and 4 deletions
|
@ -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())
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue