| 94 | bool operator<=(const KDevelop::DiffHunk& b) const { return lastLineIdx() <= b.headingLineIdx; } |
| 95 | bool operator<=(uint line) const { return lastLineIdx() <= line; } |
| 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; } |
nothing calls this directly
no test coverage detected