| 455 | // Non-member comparison operators |
| 456 | template<typename T, typename Y> |
| 457 | bool operator==(const shared_ptr<T>& lhs, const shared_ptr<Y>& rhs) FL_NOEXCEPT { |
| 458 | return lhs.get() == rhs.get(); |
| 459 | } |
| 460 | |
| 461 | template<typename T, typename Y> |
| 462 | bool operator!=(const shared_ptr<T>& lhs, const shared_ptr<Y>& rhs) FL_NOEXCEPT { |