| 76 | |
| 77 | inline bool same_as(const Shared& other) const { return p_ == other.p_; } |
| 78 | inline bool defined() const { return p_; } |
| 79 | inline bool operator<(const Shared& other) const { return p_ < other.p_; } |
| 80 | inline Shared<T>& operator=(T* x); |
| 81 | inline bool operator==(const Shared& other) const { return p_ == other.p_; } |
no outgoing calls