mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
bug 980753 - make nsRefPtr movable r=froydnj
This commit is contained in:
parent
8628b290e9
commit
15d1bae807
@ -902,7 +902,7 @@ class nsRefPtr
|
||||
{
|
||||
}
|
||||
|
||||
nsRefPtr( const nsRefPtr<T>& aSmartPtr )
|
||||
nsRefPtr(const nsRefPtr<T>& aSmartPtr)
|
||||
: mRawPtr(aSmartPtr.mRawPtr)
|
||||
// copy-constructor
|
||||
{
|
||||
@ -910,9 +910,16 @@ class nsRefPtr
|
||||
mRawPtr->AddRef();
|
||||
}
|
||||
|
||||
nsRefPtr( T* aRawPtr )
|
||||
: mRawPtr(aRawPtr)
|
||||
// construct from a raw pointer (of the right type)
|
||||
nsRefPtr(nsRefPtr<T>&& aRefPtr)
|
||||
: mRawPtr(aRefPtr.mRawPtr)
|
||||
{
|
||||
aRefPtr.mRawPtr = nullptr;
|
||||
}
|
||||
|
||||
// construct from a raw pointer (of the right type)
|
||||
|
||||
nsRefPtr(T* aRawPtr)
|
||||
: mRawPtr(aRawPtr)
|
||||
{
|
||||
if ( mRawPtr )
|
||||
mRawPtr->AddRef();
|
||||
@ -943,7 +950,7 @@ class nsRefPtr
|
||||
// Assignment operators
|
||||
|
||||
nsRefPtr<T>&
|
||||
operator=( const nsRefPtr<T>& rhs )
|
||||
operator=(const nsRefPtr<T>& rhs)
|
||||
// copy assignment operator
|
||||
{
|
||||
assign_with_AddRef(rhs.mRawPtr);
|
||||
@ -986,6 +993,14 @@ class nsRefPtr
|
||||
return *this;
|
||||
}
|
||||
|
||||
nsRefPtr<T>&
|
||||
operator=(nsRefPtr<T>&& aRefPtr)
|
||||
{
|
||||
assign_assuming_AddRef(aRefPtr.mRawPtr);
|
||||
aRefPtr.mRawPtr = nullptr;
|
||||
return *this;
|
||||
}
|
||||
|
||||
// Other pointer operators
|
||||
|
||||
void
|
||||
|
Loading…
x
Reference in New Issue
Block a user