| 616 | } |
| 617 | |
| 618 | type IndexConflictIterator struct { |
| 619 | doNotCompare |
| 620 | ptr *C.git_index_conflict_iterator |
| 621 | index *Index |
| 622 | } |
| 623 | |
| 624 | func newIndexConflictIteratorFromC(index *Index, ptr *C.git_index_conflict_iterator) *IndexConflictIterator { |
| 625 | i := &IndexConflictIterator{ptr: ptr, index: index} |
nothing calls this directly
no outgoing calls
no test coverage detected