| 66 | mustThrow(mustThrow) {} |
| 67 | |
| 68 | bool CopyFromFileError::operator<(const CopyFromFileError& o) const { |
| 69 | if (warningData.getBlockIdx() == o.warningData.getBlockIdx()) { |
| 70 | return warningData.getOffsetInBlock() < o.warningData.getOffsetInBlock(); |
| 71 | } |
| 72 | return warningData.getBlockIdx() < o.warningData.getBlockIdx(); |
| 73 | } |
| 74 | |
| 75 | } // namespace processor |
| 76 | } // namespace lbug |
nothing calls this directly
no test coverage detected