mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:37:34 +00: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)
|
: m_ptr(&object)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
RefPtr(RefPtr& other)
|
|
||||||
: m_ptr(other.copy_ref().leak_ref())
|
|
||||||
{
|
|
||||||
}
|
|
||||||
RefPtr(RefPtr&& other)
|
RefPtr(RefPtr&& other)
|
||||||
: m_ptr(other.leak_ref())
|
: m_ptr(other.leak_ref())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue