Commit becff0428e7df20792bdfc143d33c0d03b448385

Vicent Marti 2011-02-07T08:09:11

Fix compilation in MSVC The git_odb_backend_* symbols were being redefined as external. Signed-off-by: Vicent Marti <tanoku@gmail.com>

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/odb.h b/src/odb.h
index 65f73ed..c3d0a17 100644
--- a/src/odb.h
+++ b/src/odb.h
@@ -14,8 +14,4 @@ struct git_odb {
 int git_odb__hash_obj(git_oid *id, char *hdr, size_t n, int *len, git_rawobj *obj);
 int git_odb__inflate_buffer(void *in, size_t inlen, void *out, size_t outlen);
 
-
-int git_odb_backend_loose(git_odb_backend **backend_out, const char *objects_dir);
-int git_odb_backend_pack(git_odb_backend **backend_out, const char *objects_dir);
-
 #endif