| 64 | |
| 65 | friend |
| 66 | bool operator==( Z const& z1, Z const& z2 ) |
| 67 | { |
| 68 | X const& x1 = z1; |
| 69 | X const& x2 = z2; |
| 70 | return (x1 == x2) && z1.d == z2.d; |
| 71 | } |
| 72 | |
| 73 | BOOST_DESCRIBE_CLASS(Z, (X), (), (), (d)) |
| 74 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected