| 465 | |
| 466 | template<typename T, typename Y> |
| 467 | bool operator<(const shared_ptr<T>& lhs, const shared_ptr<Y>& rhs) FL_NOEXCEPT { |
| 468 | return lhs.get() < rhs.get(); |
| 469 | } |
| 470 | |
| 471 | template<typename T, typename Y> |
| 472 | bool operator<=(const shared_ptr<T>& lhs, const shared_ptr<Y>& rhs) FL_NOEXCEPT { |