| 142 | return (d.operation == this->operation) && (d.text == this->text); |
| 143 | } |
| 144 | bool operator!=(const Diff &d) const { return !(operator == (d)); } |
| 145 | |
| 146 | static string_t strOperation(Operation op) { |
| 147 | switch (op) { |
nothing calls this directly
no outgoing calls
no test coverage detected