summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2013-04-04 02:09:32 +0200
committerVicent Marti <tanoku@gmail.com>2013-04-22 16:50:51 +0200
commite16e268457ab4ab8a4edc8153deca2c8c22dc757 (patch)
tree2a8cea2d7b0e3a85b0df24e64d9b4b370e02efb5
parentd9d423e4215ac3cc17def7b1a353d03031b811f8 (diff)
downloadlibgit2-e16e268457ab4ab8a4edc8153deca2c8c22dc757.tar.gz
No longer needed
-rw-r--r--include/git2/common.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/git2/common.h b/include/git2/common.h
index 5318e66b7..b8c3e42ce 100644
--- a/include/git2/common.h
+++ b/include/git2/common.h
@@ -131,8 +131,6 @@ enum {
GIT_OPT_SET_MWINDOW_MAPPED_LIMIT,
GIT_OPT_GET_SEARCH_PATH,
GIT_OPT_SET_SEARCH_PATH,
- GIT_OPT_GET_ODB_CACHE_SIZE,
- GIT_OPT_SET_ODB_CACHE_SIZE,
};
/**
@@ -169,15 +167,6 @@ enum {
* - `level` must be GIT_CONFIG_LEVEL_SYSTEM, GIT_CONFIG_LEVEL_GLOBAL,
* or GIT_CONFIG_LEVEL_XDG.
*
- * opts(GIT_OPT_GET_ODB_CACHE_SIZE):
- * Get the size of the libgit2 odb cache.
- *
- * opts(GIT_OPT_SET_ODB_CACHE_SIZE):
- * Set the size of the of the libgit2 odb cache. This needs
- * to be done before git_repository_open is called, since
- * git_repository_open initializes the odb layer. Defaults
- * to 128.
- *
* @param option Option key
* @param ... value to set the option
* @return 0 on success, <0 on failure