diff options
author | Ramsay Jones <ramsay@ramsay1.demon.co.uk> | 2010-06-01 19:34:48 +0100 |
---|---|---|
committer | Andreas Ericsson <ae@op5.se> | 2010-06-02 11:18:56 +0200 |
commit | 6e0fa05b58c140a42ef25dc74041e30f25772b2c (patch) | |
tree | 964c192fbc2997e871c6101cb63f69b3ec377b66 /src | |
parent | 84b9cec72cc98dea3353325e42ef78b3f7e7c79e (diff) | |
download | libgit2-6e0fa05b58c140a42ef25dc74041e30f25772b2c.tar.gz |
Fix a doxygen warning
In particular, doxygen issues the following warning:
.../src/git/revwalk.h:86: Warning: The following parameters of \
gitrp_sorting(git_revpool *pool, unsigned int sort_mode) are \
not documented:
parameter 'pool'
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Andreas Ericsson <ae@op5.se>
Diffstat (limited to 'src')
-rw-r--r-- | src/git/revwalk.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/git/revwalk.h b/src/git/revwalk.h index 027a51a06..7aa92d44a 100644 --- a/src/git/revwalk.h +++ b/src/git/revwalk.h @@ -86,6 +86,7 @@ GIT_EXTERN(git_commit *) gitrp_next(git_revpool *pool); /** * Change the sorting mode when iterating through the * revision pool's contents. + * @param pool the pool being used for the traversal. * @param sort_mode combination of GIT_RPSORT_XXX flags */ GIT_EXTERN(void) gitrp_sorting(git_revpool *pool, unsigned int sort_mode); |