| 229 | |
| 230 | template <typename T> |
| 231 | static inline bool GenericEquals(const T& left, const T& right) { |
| 232 | return left == right; |
| 233 | } |
| 234 | |
| 235 | template <typename T> |
| 236 | static inline bool GenericEquals(const std::shared_ptr<T>& left, |
no test coverage detected