| 39 | |
| 40 | template <typename... Extra> |
| 41 | bool Equals(const std::shared_ptr<T>& other, Extra&&... extra) const { |
| 42 | if (other == NULLPTR) { |
| 43 | return false; |
| 44 | } |
| 45 | return cast().Equals(*other, std::forward<Extra>(extra)...); |
| 46 | } |
| 47 | |
| 48 | struct PtrsEqual { |
| 49 | bool operator()(const std::shared_ptr<T>& l, const std::shared_ptr<T>& r) const { |
no test coverage detected