1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-13 11:06:31 +02:00

wt-status: move #include "pathspec.h" to the header

The declaration of 'struct wt_status' requires the declararion of 'struct
pathspec'.

Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
SZEDER Gábor 2015-08-20 16:06:27 +02:00 committed by Junio C Hamano
parent 8545932d45
commit 7aa9b9ba02
2 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,4 @@
#include "cache.h"
#include "pathspec.h"
#include "wt-status.h"
#include "object.h"
#include "dir.h"

View File

@ -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,