(ptr *C.git_describe_result)
| 181 | } |
| 182 | |
| 183 | func newDescribeResultFromC(ptr *C.git_describe_result) *DescribeResult { |
| 184 | result := &DescribeResult{ |
| 185 | ptr: ptr, |
| 186 | } |
| 187 | runtime.SetFinalizer(result, (*DescribeResult).Free) |
| 188 | return result |
| 189 | } |
| 190 | |
| 191 | // Format prints the DescribeResult as a string. |
| 192 | func (result *DescribeResult) Format(opts *DescribeFormatOptions) (string, error) { |
no outgoing calls
no test coverage detected
searching dependent graphs…