| 2 | #include <iostream> |
| 3 | |
| 4 | struct DummyStruct |
| 5 | { |
| 6 | int32_t size; |
| 7 | char const *name; |
| 8 | }; |
| 9 | constexpr bool operator==(DummyStruct const &lhs, DummyStruct const &rhs) |
| 10 | { |
| 11 | return lhs.size == rhs.size && lhs.name == rhs.name; |
nothing calls this directly
no outgoing calls
no test coverage detected