summaryrefslogtreecommitdiff
path: root/src/filter.h
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2012-09-17 10:38:57 +0200
committernulltoken <emeric.fermas@gmail.com>2012-09-17 10:48:36 +0200
commit5e4cb4f4da0baef99683be95cb5eeb5288d8ba84 (patch)
tree558ccfa1cb25ec06bdf4b5cc51ac8330fd8f4282 /src/filter.h
parent44af67a8b6679ac33c3407d45fee042178d97e76 (diff)
downloadlibgit2-5e4cb4f4da0baef99683be95cb5eeb5288d8ba84.tar.gz
checkout : reduce memory usage when not filtering
Diffstat (limited to 'src/filter.h')
-rw-r--r--src/filter.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/filter.h b/src/filter.h
index d58e173f9..b9beb4942 100644
--- a/src/filter.h
+++ b/src/filter.h
@@ -119,15 +119,4 @@ extern void git_text_gather_stats(git_text_stats *stats, const git_buf *text);
*/
extern int git_text_is_binary(git_text_stats *stats);
-
-/**
- * Get the content of a blob after all filters have been run.
- *
- * @param out buffer to receive the contents
- * @param hintpath path to the blob's output file, relative to the workdir root.
- * Used to determine what git filters should be applied to the content.
- * @return 0 on success, an error code otherwise
- */
-extern int git_filter_blob_content(git_buf *out, git_blob *blob, const char *hintpath);
-
#endif