| 475 | |
| 476 | template<typename T, typename Y> |
| 477 | bool operator>(const shared_ptr<T>& lhs, const shared_ptr<Y>& rhs) FL_NOEXCEPT { |
| 478 | return lhs.get() > rhs.get(); |
| 479 | } |
| 480 | |
| 481 | template<typename T, typename Y> |
| 482 | bool operator>=(const shared_ptr<T>& lhs, const shared_ptr<Y>& rhs) FL_NOEXCEPT { |