Free the reference iterator
()
| 472 | |
| 473 | // Free the reference iterator |
| 474 | func (v *ReferenceIterator) Free() { |
| 475 | runtime.SetFinalizer(v, nil) |
| 476 | C.git_reference_iterator_free(v.ptr) |
| 477 | } |
| 478 | |
| 479 | // ReferenceNameIsValid returns whether the reference name is well-formed. |
| 480 | // |
nothing calls this directly
no outgoing calls
no test coverage detected