| 470 | |
| 471 | template<typename T, typename Y> |
| 472 | bool operator<=(const shared_ptr<T>& lhs, const shared_ptr<Y>& rhs) FL_NOEXCEPT { |
| 473 | return lhs.get() <= rhs.get(); |
| 474 | } |
| 475 | |
| 476 | template<typename T, typename Y> |
| 477 | bool operator>(const shared_ptr<T>& lhs, const shared_ptr<Y>& rhs) FL_NOEXCEPT { |