summaryrefslogtreecommitdiff
path: root/include/git2/buffer.h
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2019-01-23 00:07:40 +0000
committerEdward Thomson <ethomson@edwardthomson.com>2019-01-25 09:06:50 +0000
commita7d0d14fb03243f571b801804d1b5ac9a2aee725 (patch)
treef786e9f6c245ad75baf3928c92c55ef6a939fa35 /include/git2/buffer.h
parent1c3daccf1adffe03efc3e2edab677febbaabda25 (diff)
downloadlibgit2-a7d0d14fb03243f571b801804d1b5ac9a2aee725.tar.gz
deprecation: move deprecated bits to deprecated.h
Diffstat (limited to 'include/git2/buffer.h')
-rw-r--r--include/git2/buffer.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/git2/buffer.h b/include/git2/buffer.h
index 050afb9fb..0027678b8 100644
--- a/include/git2/buffer.h
+++ b/include/git2/buffer.h
@@ -72,18 +72,6 @@ typedef struct {
GIT_EXTERN(void) git_buf_dispose(git_buf *buffer);
/**
- * Alias of `git_buf_dispose`.
- *
- * This function is directly calls `git_buf_dispose` now and is deprecated.
- * Going forward, we refer to functions freeing the internal state of a
- * structure a `dispose` function, while functions freeing the structure
- * themselves will be called a `free` function.
- *
- * This function is going to be removed in v0.30.0.
- */
-GIT_DEPRECATED(GIT_EXTERN(void)) git_buf_free(git_buf *buffer);
-
-/**
* Resize the buffer allocation to make more space.
*
* This will attempt to grow the buffer to accommodate the target size.