diff options
Diffstat (limited to 'include/git2/object.h')
-rw-r--r-- | include/git2/object.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/git2/object.h b/include/git2/object.h index 9b4517830..2045dd8dc 100644 --- a/include/git2/object.h +++ b/include/git2/object.h @@ -186,20 +186,6 @@ GIT_EXTERN(git_object_t) git_object_string2type(const char *str); GIT_EXTERN(int) git_object_typeisloose(git_object_t type); /** - * Get the size in bytes for the structure which - * acts as an in-memory representation of any given - * object type. - * - * For all the core types, this would the equivalent - * of calling `sizeof(git_commit)` if the core types - * were not opaque on the external API. - * - * @param type object type to get its size - * @return size in bytes of the object - */ -GIT_EXTERN(size_t) git_object_size(git_object_t type); - -/** * Recursively peel an object until an object of the specified type is met. * * If the query cannot be satisfied due to the object model, |