summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@vercel.com>2023-02-23 14:03:16 +0000
committerEdward Thomson <ethomson@vercel.com>2023-02-23 14:03:16 +0000
commitd16b59c91e524bfa385b3db511da727a66694820 (patch)
tree9459ae377b1da6878a0c78839b30e2df6293350a /include
parentc9387a61656cd666d76a0491f6839c1a32835ca0 (diff)
downloadlibgit2-d16b59c91e524bfa385b3db511da727a66694820.tar.gz
odb: don't unconditionally add oid_type to stream
`git_odb_stream` should have an `oid_type` to disambiguate; that's not necessary on non-experimental SHA256 builds. Avoid unnecessary ABI breakage for consumers and hide it behind an ifdef for now.
Diffstat (limited to 'include')
-rw-r--r--include/git2/odb_backend.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/git2/odb_backend.h b/include/git2/odb_backend.h
index 4d0559ec0..12dd0fd38 100644
--- a/include/git2/odb_backend.h
+++ b/include/git2/odb_backend.h
@@ -171,7 +171,9 @@ struct git_odb_stream {
unsigned int mode;
void *hash_ctx;
+#ifdef GIT_EXPERIMENTAL_SHA256
git_oid_t oid_type;
+#endif
git_object_size_t declared_size;
git_object_size_t received_bytes;