()
| 241 | } |
| 242 | |
| 243 | func (stats *DiffStats) Deletions() int { |
| 244 | ret := int(C.git_diff_stats_deletions(stats.ptr)) |
| 245 | runtime.KeepAlive(stats) |
| 246 | return ret |
| 247 | } |
| 248 | |
| 249 | func (stats *DiffStats) FilesChanged() int { |
| 250 | ret := int(C.git_diff_stats_files_changed(stats.ptr)) |
no outgoing calls