| 480 | |
| 481 | template<typename T, typename Y> |
| 482 | bool operator>=(const shared_ptr<T>& lhs, const shared_ptr<Y>& rhs) FL_NOEXCEPT { |
| 483 | return lhs.get() >= rhs.get(); |
| 484 | } |
| 485 | |
| 486 | template<typename T> |
| 487 | bool operator==(const shared_ptr<T>& lhs, fl::nullptr_t) FL_NOEXCEPT { |