From becff0428e7df20792bdfc143d33c0d03b448385 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Mon, 7 Feb 2011 08:09:11 +0200 Subject: [PATCH] Fix compilation in MSVC The git_odb_backend_* symbols were being redefined as external. Signed-off-by: Vicent Marti --- src/odb.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/odb.h b/src/odb.h index 65f73ed30..c3d0a17ab 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