Home | History | Annotate | Download | only in util.smartptr.ownerless

Lines Matching refs:weak_ptr

20 //     bool operator()(shared_ptr<T> const&, weak_ptr<T> const&) const;
21 // bool operator()(weak_ptr<T> const&, shared_ptr<T> const&) const;
25 // struct owner_less<weak_ptr<T> >
26 // : binary_function<weak_ptr<T>, weak_ptr<T>, bool>
29 // bool operator()(weak_ptr<T> const&, weak_ptr<T> const&) const;
30 // bool operator()(shared_ptr<T> const&, weak_ptr<T> const&) const;
31 // bool operator()(weak_ptr<T> const&, shared_ptr<T> const&) const;
42 const std::weak_ptr<int> w1(p1);
43 const std::weak_ptr<int> w2(p2);
44 const std::weak_ptr<int> w3(p3);
61 typedef std::owner_less<std::weak_ptr<int> > CS;