Modernize relational operators for shared_ptr and unique_ptr. This includes adding support for nullptr, and using less<T*>. Fixes http://llvm.org/bugs/show_bug.cgi?id=12056.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@151084 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant
2012-02-21 21:02:58 +00:00
parent d41b60b2b4
commit 3fadda314a
5 changed files with 377 additions and 8 deletions

View File

@@ -0,0 +1,71 @@
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <memory>
// shared_ptr
// template <class T>
// bool operator==(const shared_ptr<T>& x, nullptr_t) noexcept;
// template <class T>
// bool operator==(nullptr_t, const shared_ptr<T>& y) noexcept;
// template <class T>
// bool operator!=(const shared_ptr<T>& x, nullptr_t) noexcept;
// template <class T>
// bool operator!=(nullptr_t, const shared_ptr<T>& y) noexcept;
// template <class T>
// bool operator<(const shared_ptr<T>& x, nullptr_t) noexcept;
// template <class T>
// bool operator<(nullptr_t, const shared_ptr<T>& y) noexcept;
// template <class T>
// bool operator<=(const shared_ptr<T>& x, nullptr_t) noexcept;
// template <class T>
// bool operator<=(nullptr_t, const shared_ptr<T>& y) noexcept;
// template <class T>
// bool operator>(const shared_ptr<T>& x, nullptr_t) noexcept;
// template <class T>
// bool operator>(nullptr_t, const shared_ptr<T>& y) noexcept;
// template <class T>
// bool operator>=(const shared_ptr<T>& x, nullptr_t) noexcept;
// template <class T>
// bool operator>=(nullptr_t, const shared_ptr<T>& y) noexcept;
#include <memory>
#include <cassert>
void do_nothing(int*) {}
int main()
{
int* ptr1(new int);
int* ptr2(new int);
const std::shared_ptr<int> p1(new int(1));
assert(!(p1 == nullptr));
assert(!(nullptr == p1));
assert(!(p1 < nullptr));
assert( (nullptr < p1));
assert(!(p1 <= nullptr));
assert( (nullptr <= p1));
assert( (p1 > nullptr));
assert(!(nullptr > p1));
assert( (p1 >= nullptr));
assert(!(nullptr >= p1));
const std::shared_ptr<int> p2;
assert( (p2 == nullptr));
assert( (nullptr == p2));
assert(!(p2 < nullptr));
assert(!(nullptr < p2));
assert( (p2 <= nullptr));
assert( (nullptr <= p2));
assert(!(p2 > nullptr));
assert(!(nullptr > p2));
assert( (p2 >= nullptr));
assert( (nullptr >= p2));
}