| 27 | } |
| 28 | |
| 29 | bool SimpleRequest::operator<(const SimpleRequest& other) const noexcept |
| 30 | { |
| 31 | if (id < other.id) |
| 32 | return true; |
| 33 | if (other.id < id) |
| 34 | return false; |
| 35 | return false; |
| 36 | } |
| 37 | |
| 38 | void SimpleRequest::swap(SimpleRequest& other) noexcept |
| 39 | { |
nothing calls this directly
no outgoing calls
no test coverage detected