diff options
| author | Junio C Hamano <gitster@pobox.com> | 2015-09-03 19:17:57 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2015-09-03 19:17:57 -0700 |
| commit | dc4e7b024436694fe380ef8edd51a307107e959f (patch) | |
| tree | 8a16d8a922195dccc8c550da388a79fa8935436d | |
| parent | Merge branch 'po/po-readme' into maint (diff) | |
| parent | wt-status: move #include "pathspec.h" to the header (diff) | |
| download | git-dc4e7b024436694fe380ef8edd51a307107e959f.tar.gz git-dc4e7b024436694fe380ef8edd51a307107e959f.zip | |
Merge branch 'sg/wt-status-header-inclusion' into maint
* sg/wt-status-header-inclusion:
wt-status: move #include "pathspec.h" to the header
| -rw-r--r-- | wt-status.c | 1 | ||||
| -rw-r--r-- | wt-status.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/wt-status.c b/wt-status.c index eaed4fed32..e8c39efbcb 100644 --- a/wt-status.c +++ b/wt-status.c @@ -1,5 +1,4 @@ #include "cache.h" -#include "pathspec.h" #include "wt-status.h" #include "object.h" #include "dir.h" diff --git a/wt-status.h b/wt-status.h index e0a99f75c7..c9b3b744e9 100644 --- a/wt-status.h +++ b/wt-status.h @@ -4,6 +4,7 @@ #include <stdio.h> #include "string-list.h" #include "color.h" +#include "pathspec.h" enum color_wt_status { WT_STATUS_HEADER = 0, |
