| 123 | inline void adjustDiff2(const qint64 delta) { mDiff2 += delta; } |
| 124 | |
| 125 | bool operator==(const Diff& b) const |
| 126 | { |
| 127 | return nofEquals == b.nofEquals && mDiff1 == b.mDiff1 && mDiff2 == b.mDiff2; |
| 128 | }; |
| 129 | |
| 130 | bool operator!=(const Diff& b) const |
| 131 | { |
nothing calls this directly
no outgoing calls
no test coverage detected