()
| 130 | } |
| 131 | |
| 132 | func (blame *Blame) Free() error { |
| 133 | if blame.ptr == nil { |
| 134 | return ErrInvalid |
| 135 | } |
| 136 | runtime.SetFinalizer(blame, nil) |
| 137 | C.git_blame_free(blame.ptr) |
| 138 | blame.ptr = nil |
| 139 | return nil |
| 140 | } |
| 141 | |
| 142 | type BlameHunk struct { |
| 143 | LinesInHunk uint16 |
nothing calls this directly
no outgoing calls
no test coverage detected