Commit e3557172aff5814e32e58bceb015465dcbe9e5f3

Russell Belfer 2012-05-17T14:44:17

No point in keeping commented out fn

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/src/buffer.c b/src/buffer.c
index f28aa21..783a36e 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -98,15 +98,6 @@ void git_buf_clear(git_buf *buf)
 		buf->ptr[0] = '\0';
 }
 
-/* Moved to inline function:
-
-bool git_buf_oom(const git_buf *buf)
-{
-	return (buf->ptr == git_buf__oom);
-}
-
-*/
-
 int git_buf_set(git_buf *buf, const char *data, size_t len)
 {
 	if (len == 0 || data == NULL) {