mirror of
https://github.com/git/git
synced 2024-11-05 01:58:18 +00:00
match-trees.h: move declarations for match-trees.c functions from cache.h
Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
b388633c5c
commit
d4ff2072ab
6 changed files with 14 additions and 4 deletions
4
cache.h
4
cache.h
|
@ -603,10 +603,6 @@ int add_files_to_cache(const char *prefix, const struct pathspec *pathspec, int
|
|||
/* diff.c */
|
||||
extern int diff_auto_refresh_index;
|
||||
|
||||
/* match-trees.c */
|
||||
void shift_tree(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, int);
|
||||
void shift_tree_by(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, const char *);
|
||||
|
||||
/*
|
||||
* whitespace rules.
|
||||
* used by both diff and apply
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#include "cache.h"
|
||||
#include "hex.h"
|
||||
#include "match-trees.h"
|
||||
#include "tree.h"
|
||||
#include "tree-walk.h"
|
||||
#include "object-store.h"
|
||||
|
|
10
match-trees.h
Normal file
10
match-trees.h
Normal file
|
@ -0,0 +1,10 @@
|
|||
#ifndef MATCH_TREES_H
|
||||
#define MATCH_TREES_H
|
||||
|
||||
struct object_id;
|
||||
struct repository;
|
||||
|
||||
void shift_tree(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, int);
|
||||
void shift_tree_by(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, const char *);
|
||||
|
||||
#endif /* MATCH_TREES_H */
|
|
@ -31,6 +31,7 @@
|
|||
#include "hex.h"
|
||||
#include "entry.h"
|
||||
#include "ll-merge.h"
|
||||
#include "match-trees.h"
|
||||
#include "mem-pool.h"
|
||||
#include "object-name.h"
|
||||
#include "object-store.h"
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
#include "hex.h"
|
||||
#include "ll-merge.h"
|
||||
#include "lockfile.h"
|
||||
#include "match-trees.h"
|
||||
#include "object-file.h"
|
||||
#include "object-name.h"
|
||||
#include "object-store.h"
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include "test-tool.h"
|
||||
#include "cache.h"
|
||||
#include "hex.h"
|
||||
#include "match-trees.h"
|
||||
#include "object-name.h"
|
||||
#include "setup.h"
|
||||
#include "tree.h"
|
||||
|
|
Loading…
Reference in a new issue