Implement one operator== with another.

Thanks for David Blaikie for the suggestion.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210107 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2014-06-03 15:06:22 +00:00
parent 58a20d70fa
commit 45178b9d60

View File

@ -248,7 +248,7 @@ public:
template <class T>
bool operator==(const IntrusiveRefCntPtr<T> &A, std::nullptr_t B) {
return !A;
return B == A;
}
template <class T>