| 62 | } |
| 63 | |
| 64 | bool CommandError::operator<(const CommandError& e) const { |
| 65 | return errorPointer && e.errorPointer && errorPointer->mode < e.errorPointer->mode; |
| 66 | } |
| 67 | |
| 68 | bool CommandError::operator>=(const CommandError& e) const { |
| 69 | return errorPointer && e.errorPointer && errorPointer->mode >= e.errorPointer->mode; |
nothing calls this directly
no outgoing calls
no test coverage detected