Updated the synopsis for weak_ptr<T>::owner_before to match the code. No code changes.

llvm-svn: 189812
This commit is contained in:
Marshall Clow 2013-09-03 14:37:50 +00:00
parent e892ccec0d
commit 710a902cac
1 changed files with 2 additions and 2 deletions

View File

@ -496,8 +496,8 @@ public:
long use_count() const noexcept;
bool expired() const noexcept;
shared_ptr<T> lock() const noexcept;
template<class U> bool owner_before(shared_ptr<U> const& b);
template<class U> bool owner_before(weak_ptr<U> const& b);
template<class U> bool owner_before(shared_ptr<U> const& b) const;
template<class U> bool owner_before(weak_ptr<U> const& b) const;
};
// weak_ptr specialized algorithms: