| 246 | |
| 247 | struct IntSerializableHash { |
| 248 | size_t operator()(IntSerializable s) const noexcept { |
| 249 | return s.v; |
| 250 | } |
| 251 | }; |
| 252 | struct IntSerializableEqual { |
| 253 | bool operator()(IntSerializable l, IntSerializable r) const noexcept { |
nothing calls this directly
no outgoing calls
no test coverage detected