diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-08-20 12:41:32 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-08-20 12:41:32 -0700 |
commit | 5ade03446430f1190fdf1eca8b8fde5f63367110 (patch) | |
tree | ba0c1878e9d5c96cfcb9668a3756a80b73600789 /revision.h | |
parent | 36f0f344e71b928d47871e39fcef1908cb47c47b (diff) | |
parent | 1076f1e454dae338cee8e48f3e69b58181e5e10a (diff) | |
download | git-5ade03446430f1190fdf1eca8b8fde5f63367110.tar.gz |
Merge branch 'en/incl-forward-decl'
Code hygiene improvement for the header files.
* en/incl-forward-decl:
Remove forward declaration of an enum
compat/precompose_utf8.h: use more common include guard style
urlmatch.h: fix include guard
Move definition of enum branch_track from cache.h to branch.h
alloc: make allocate_alloc_state and clear_alloc_state more consistent
Add missing includes and forward declarations
Diffstat (limited to 'revision.h')
-rw-r--r-- | revision.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/revision.h b/revision.h index 51bb57d889..007278cc11 100644 --- a/revision.h +++ b/revision.h @@ -1,6 +1,7 @@ #ifndef REVISION_H #define REVISION_H +#include "commit.h" #include "parse-options.h" #include "grep.h" #include "notes.h" |