summaryrefslogtreecommitdiff
path: root/src/odb.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2011-02-07 08:09:11 +0200
committerVicent Marti <tanoku@gmail.com>2011-02-07 08:09:11 +0200
commitbecff0428e7df20792bdfc143d33c0d03b448385 (patch)
tree08632b52695309598c416d689ab29531a2bbbcea /src/odb.h
parent2e75e15690bbc34c496cac330ea93a423fded95d (diff)
downloadlibgit2-becff0428e7df20792bdfc143d33c0d03b448385.tar.gz
Fix compilation in MSVC
The git_odb_backend_* symbols were being redefined as external. Signed-off-by: Vicent Marti <tanoku@gmail.com>
Diffstat (limited to 'src/odb.h')
-rw-r--r--src/odb.h4
1 files changed, 0 insertions, 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