Bug 827679 - add return value to nsMainThreadPtrHandle::operator=; r=bholley

This commit is contained in:
Mike Habicher 2013-01-07 23:09:19 -05:00
Родитель f568f12d29
Коммит 0dc7293229
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -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(); }