* Is this Diff equivalent to another Diff? * @param d Another Diff to compare against * @return true or false */
| 139 | * @return true or false |
| 140 | */ |
| 141 | bool operator==(const Diff &d) const { |
| 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) { |
nothing calls this directly
no outgoing calls
no test coverage detected