Bug 1208371 - Implement operator!= for nsMainThreadPtrHandle. r=bholley

MozReview-Commit-ID: EjlvLi9VsFA

--HG--
extra : rebase_source : 0e58b99b3c03a4abc4dfbcd57662f761f701615e
This commit is contained in:
Andreas Pehrson 2016-02-04 00:24:52 +08:00
Родитель 849f97a6f3
Коммит dfc6d94fe7
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -272,6 +272,10 @@ public:
}
return *mPtr == *aOther.mPtr;
}
bool operator!=(const nsMainThreadPtrHandle<T>& aOther) const
{
return !operator==(aOther);
}
bool operator!() const {
return !mPtr || !*mPtr;
}