Fix a doxygen warning
[libgit2.git] / src / revwalk.h
blobf7c4cf4a40255c3b0ca8d8981121e329478a92dd
1 #ifndef INCLUDE_revwalk_h__
2 #define INCLUDE_revwalk_h__
4 #include "git/common.h"
5 #include "git/revwalk.h"
7 struct git_revpool {
8 git_odb *db;
10 git_commit_list iterator;
11 git_commit *(*next_commit)(git_commit_list *);
13 git_commit_list roots;
14 git_revpool_table *commits;
16 unsigned walking:1;
17 unsigned int sorting;
20 void gitrp__prepare_walk(git_revpool *pool);
21 int gitrp__enroot(git_revpool *pool, git_commit *commit);
23 #endif /* INCLUDE_revwalk_h__ */