| 17 | ) |
| 18 | |
| 19 | type AnnotatedCommit struct { |
| 20 | doNotCompare |
| 21 | ptr *C.git_annotated_commit |
| 22 | r *Repository |
| 23 | } |
| 24 | |
| 25 | func newAnnotatedCommitFromC(ptr *C.git_annotated_commit, r *Repository) *AnnotatedCommit { |
| 26 | mh := &AnnotatedCommit{ptr: ptr, r: r} |
nothing calls this directly
no outgoing calls
no test coverage detected