Commit 67c177ef by Edward Thomson

Don't expose git_hash_ctx since it's internal

And doing so makes the mingw build choke.
parent 6d69fbce
...@@ -65,8 +65,6 @@ typedef enum { ...@@ -65,8 +65,6 @@ typedef enum {
GIT_STREAM_RW = (GIT_STREAM_RDONLY | GIT_STREAM_WRONLY), GIT_STREAM_RW = (GIT_STREAM_RDONLY | GIT_STREAM_WRONLY),
} git_odb_stream_t; } git_odb_stream_t;
typedef struct git_hash_ctx git_hash_ctx;
/** /**
* A stream to read/write from a backend. * A stream to read/write from a backend.
* *
...@@ -78,7 +76,7 @@ typedef struct git_hash_ctx git_hash_ctx; ...@@ -78,7 +76,7 @@ typedef struct git_hash_ctx git_hash_ctx;
struct git_odb_stream { struct git_odb_stream {
git_odb_backend *backend; git_odb_backend *backend;
unsigned int mode; unsigned int mode;
git_hash_ctx *hash_ctx; void *hash_ctx;
/** /**
* Write at most `len` bytes into `buffer` and advance the * Write at most `len` bytes into `buffer` and advance the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment