| 238 | |
| 239 | struct StructEqualer { |
| 240 | bool operator()(EquatableStruct lhs, EquatableStruct rhs) const { |
| 241 | return JsonMapEquals(lhs, rhs); |
| 242 | } |
| 243 | |
| 244 | template <typename T> |
| 245 | std::enable_if_t<std::negation_v<std::is_same<EquatableStruct, T>>, bool> |
nothing calls this directly
no test coverage detected