Commit 2c642918 by Edward Thomson

net: remove unused `git_headlist_cb`

parent 37e4c1ba
...@@ -403,6 +403,11 @@ typedef git_push_transfer_progress_cb git_push_transfer_progress; ...@@ -403,6 +403,11 @@ typedef git_push_transfer_progress_cb git_push_transfer_progress;
/** The type of a remote completion event */ /** The type of a remote completion event */
#define git_remote_completion_type git_remote_completion_t #define git_remote_completion_type git_remote_completion_t
/**
* Callback for listing the remote heads
*/
typedef int GIT_CALLBACK(git_headlist_cb)(git_remote_head *rhead, void *payload);
/**@}*/ /**@}*/
/** @name Deprecated Options Initialization Functions /** @name Deprecated Options Initialization Functions
......
...@@ -49,11 +49,6 @@ struct git_remote_head { ...@@ -49,11 +49,6 @@ struct git_remote_head {
char *symref_target; char *symref_target;
}; };
/**
* Callback for listing the remote heads
*/
typedef int GIT_CALLBACK(git_headlist_cb)(git_remote_head *rhead, void *payload);
/** @} */ /** @} */
GIT_END_DECL GIT_END_DECL
#endif #endif
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