()
| 237 | } |
| 238 | |
| 239 | func (c *Config) Free() { |
| 240 | runtime.SetFinalizer(c, nil) |
| 241 | C.git_config_free(c.ptr) |
| 242 | } |
| 243 | |
| 244 | func (c *Config) SetInt32(name string, value int32) (err error) { |
| 245 | cname := C.CString(name) |
nothing calls this directly
no outgoing calls
no test coverage detected