#B Provide at least equality comparison
| 15 | |
| 16 | // #B Provide at least equality comparison |
| 17 | bool operator==(const BCD& rhs) const |
| 18 | { |
| 19 | return rhs.mValue == mValue; |
| 20 | } |
| 21 | |
| 22 | bool operator!=(const BCD& rhs) const |
| 23 | { |
nothing calls this directly
no outgoing calls
no test coverage detected