Move to the next side of a conflict. # Arguments `id` - The conflict ID (must match the begin call) `changes` - Optional change hashes for this side
(&mut self, id: usize, changes: Option<&[Hash]>)
| 509 | /// * `id` - The conflict ID (must match the begin call) |
| 510 | /// * `changes` - Optional change hashes for this side |
| 511 | fn conflict_next(&mut self, id: usize, changes: Option<&[Hash]>) -> Result<(), std::io::Error> { |
| 512 | self.output_conflict_marker(markers::SEPARATOR, id, changes) |
| 513 | } |
| 514 | |
| 515 | /// End a conflict region. |
| 516 | /// |