| 214 | |
| 215 | template <typename T> |
| 216 | static inline bool GenericEquals(const T& left, const T& right) { |
| 217 | return left == right; |
| 218 | } |
| 219 | |
| 220 | template <typename T> |
| 221 | static inline bool GenericEquals(const std::shared_ptr<T>& left, |
no test coverage detected