Notes API: remove_note(): Remove note objects from the notes tree structure

This includes adding internal functions for maintaining a healthy notes tree
structure after removing individual notes.

Signed-off-by: Johan Herland <johan@herland.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Johan Herland
2010-02-13 22:28:14 +01:00
committed by Junio C Hamano
parent 2626b53670
commit 1ec666b092
2 changed files with 87 additions and 1 deletions

View File

@@ -25,6 +25,9 @@ void init_notes(const char *notes_ref, int flags);
void add_note(const unsigned char *object_sha1,
const unsigned char *note_sha1);
/* Remove the given note object from the internal notes tree structure */
void remove_note(const unsigned char *object_sha1);
/* Free (and de-initialize) the internal notes tree structure */
void free_notes(void);