From b3e7304abf6f0c4ef50e973acb220c40a5ddac86 Mon Sep 17 00:00:00 2001 From: Mark Probst Date: Mon, 23 Mar 2015 12:02:08 -0700 Subject: [PATCH] Add a FIXME. --- index.go | 1 + 1 file changed, 1 insertion(+) diff --git a/index.go b/index.go index 6b90758..9f37f33 100644 --- a/index.go +++ b/index.go @@ -287,6 +287,7 @@ func (v *Index) HasConflicts() bool { return C.git_index_has_conflicts(v.ptr) != 0 } +// FIXME: this might return an error func (v *Index) CleanupConflicts() { C.git_index_conflict_cleanup(v.ptr) }