* Constructor. Initializes the diff with the provided values. * @param operation One of INSERT, DELETE or EQUAL. * @param text The text being applied. */
| 119 | * @param text The text being applied. |
| 120 | */ |
| 121 | Diff(Operation _operation, const string_t &_text) : operation(_operation), text(_text) {} |
| 122 | Diff() =default; |
| 123 | |
| 124 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected