зеркало из https://github.com/mozilla/gecko-dev.git
Bug 827679 - add return value to nsMainThreadPtrHandle::operator=; r=bholley
This commit is contained in:
Родитель
f568f12d29
Коммит
0dc7293229
|
@ -165,6 +165,7 @@ class nsMainThreadPtrHandle
|
|||
nsMainThreadPtrHandle(const nsMainThreadPtrHandle& aOther) : mPtr(aOther.mPtr) {}
|
||||
nsMainThreadPtrHandle& operator=(const nsMainThreadPtrHandle& aOther) {
|
||||
mPtr = aOther.mPtr;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator nsMainThreadPtrHolder<T>*() { return mPtr.get(); }
|
||||
|
|
Загрузка…
Ссылка в новой задаче