Exemplo n.º 1
0
func (repo *Repository) Free() {
	C.git_repository_free(repo.git_repository)
}
Exemplo n.º 2
0
func (v *Repository) Free() {
	runtime.SetFinalizer(v, nil)
	C.git_repository_free(v.ptr)
}
Exemplo n.º 3
0
func (r *GitRepository) Free() {
	runtime.SetFinalizer(r, nil)
	C.git_repository_free(r.ptr)
}
Exemplo n.º 4
0
// Frees memory associated with the Reference. The repository should be
// considered invalid after this operation.
func (r Reference) Free() {
	C.git_repository_free(r.ref)
}
Exemplo n.º 5
0
// Frees memory associated with the repository. The repository handle should
// be considered invalid after this operation.
func (r Repository) Free() {
	C.git_repository_free(r.repo)
}
Exemplo n.º 6
0
func (v *Repo) Free() {
	C.git_repository_free(v.git_repo)
}