diff options
author | Vicent Marti <tanoku@gmail.com> | 2011-01-03 22:34:27 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-01-03 22:34:27 +0200 |
commit | e52ed7a5595568f169b3df74b675059c3d04da4a (patch) | |
tree | 343dd106eeb770a4e3e68759c681a096469ba70a /src/hashtable.c | |
parent | fb3cd6bca40ef942898e9d5ae5d9f305deefcc40 (diff) | |
download | libgit2-e52ed7a5595568f169b3df74b675059c3d04da4a.tar.gz |
Split object methods from repository.c
All the relevant git_object methods have been moved to object.c
Signed-off-by: Vicent Marti <tanoku@gmail.com>
Diffstat (limited to 'src/hashtable.c')
-rw-r--r-- | src/hashtable.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/hashtable.c b/src/hashtable.c index 242a6fa1d..67fd49a46 100644 --- a/src/hashtable.c +++ b/src/hashtable.c @@ -27,7 +27,6 @@ #include "repository.h" #include "commit.h" -static const int default_table_size = 32; static const double max_load_factor = 0.65; static void hashtable_resize(git_hashtable *table) |