| 36 | BOOST_DESCRIBE_STRUCT(X, (), (a, b, c)) |
| 37 | |
| 38 | bool operator==( X const& x1, X const& x2 ) |
| 39 | { |
| 40 | return x1.a == x2.a && x1.b == x2.b && x1.c == x2.c; |
| 41 | } |
| 42 | |
| 43 | struct Y |
| 44 | { |
nothing calls this directly
no outgoing calls
no test coverage detected