| 96 | bool operator>(const KDevelop::DiffHunk& b) const { return headingLineIdx > b.lastLineIdx(); } |
| 97 | bool operator>(uint line) const { return headingLineIdx > line; } |
| 98 | bool operator>=(const KDevelop::DiffHunk& b) { return headingLineIdx >= b.lastLineIdx(); } |
| 99 | bool operator>=(uint line) const { return headingLineIdx >= line; } |
| 100 | }; |
| 101 |
nothing calls this directly
no test coverage detected