| 153 | // Ownership (similar to shared_ptr interface) |
| 154 | template<typename Y> |
| 155 | bool owner_before(const weak_ptr<Y>& other) const FL_NOEXCEPT { |
| 156 | return mControlBlock < other.mControlBlock; |
| 157 | } |
| 158 | |
| 159 | template<typename Y> |
| 160 | bool owner_before(const shared_ptr<Y>& other) const FL_NOEXCEPT { |