treewide: remove unnecessary cache.h includes
We had several header files include cache.h unnecessarily. Remove those. These have all been verified via both ensuring that gcc -E $HEADER | grep '"cache.h"' found no hits and that cat >temp.c <<EOF && #include "git-compat-util.h" #include "$HEADER" int main() {} EOF gcc -c temp.c successfully compiles without warnings. Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
f332121e75
commit
ba3d1c73da
@ -1,7 +1,7 @@
|
|||||||
#ifndef CHECKOUT_H
|
#ifndef CHECKOUT_H
|
||||||
#define CHECKOUT_H
|
#define CHECKOUT_H
|
||||||
|
|
||||||
#include "cache.h"
|
#include "hash.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Check if the branch name uniquely matches a branch name on a remote
|
* Check if the branch name uniquely matches a branch name on a remote
|
||||||
|
4
entry.h
4
entry.h
@ -1,9 +1,11 @@
|
|||||||
#ifndef ENTRY_H
|
#ifndef ENTRY_H
|
||||||
#define ENTRY_H
|
#define ENTRY_H
|
||||||
|
|
||||||
#include "cache.h"
|
|
||||||
#include "convert.h"
|
#include "convert.h"
|
||||||
|
|
||||||
|
struct cache_entry;
|
||||||
|
struct index_state;
|
||||||
|
|
||||||
struct checkout {
|
struct checkout {
|
||||||
struct index_state *istate;
|
struct index_state *istate;
|
||||||
const char *base_dir;
|
const char *base_dir;
|
||||||
|
1
khash.h
1
khash.h
@ -26,7 +26,6 @@
|
|||||||
#ifndef __AC_KHASH_H
|
#ifndef __AC_KHASH_H
|
||||||
#define __AC_KHASH_H
|
#define __AC_KHASH_H
|
||||||
|
|
||||||
#include "cache.h"
|
|
||||||
#include "hashmap.h"
|
#include "hashmap.h"
|
||||||
|
|
||||||
#define AC_VERSION_KHASH_H "0.2.8"
|
#define AC_VERSION_KHASH_H "0.2.8"
|
||||||
|
1
oidmap.h
1
oidmap.h
@ -1,7 +1,6 @@
|
|||||||
#ifndef OIDMAP_H
|
#ifndef OIDMAP_H
|
||||||
#define OIDMAP_H
|
#define OIDMAP_H
|
||||||
|
|
||||||
#include "cache.h"
|
|
||||||
#include "hashmap.h"
|
#include "hashmap.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
2
pretty.h
2
pretty.h
@ -1,11 +1,11 @@
|
|||||||
#ifndef PRETTY_H
|
#ifndef PRETTY_H
|
||||||
#define PRETTY_H
|
#define PRETTY_H
|
||||||
|
|
||||||
#include "cache.h"
|
|
||||||
#include "date.h"
|
#include "date.h"
|
||||||
#include "string-list.h"
|
#include "string-list.h"
|
||||||
|
|
||||||
struct commit;
|
struct commit;
|
||||||
|
struct repository;
|
||||||
struct strbuf;
|
struct strbuf;
|
||||||
struct process_trailer_options;
|
struct process_trailer_options;
|
||||||
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
#ifndef REFLOG_WALK_H
|
#ifndef REFLOG_WALK_H
|
||||||
#define REFLOG_WALK_H
|
#define REFLOG_WALK_H
|
||||||
|
|
||||||
#include "cache.h"
|
|
||||||
|
|
||||||
struct commit;
|
struct commit;
|
||||||
struct reflog_walk_info;
|
struct reflog_walk_info;
|
||||||
struct date_mode;
|
struct date_mode;
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
#ifndef REFS_REFS_INTERNAL_H
|
#ifndef REFS_REFS_INTERNAL_H
|
||||||
#define REFS_REFS_INTERNAL_H
|
#define REFS_REFS_INTERNAL_H
|
||||||
|
|
||||||
#include "cache.h"
|
|
||||||
#include "refs.h"
|
#include "refs.h"
|
||||||
#include "iterator.h"
|
#include "iterator.h"
|
||||||
|
|
||||||
|
1
remote.h
1
remote.h
@ -1,7 +1,6 @@
|
|||||||
#ifndef REMOTE_H
|
#ifndef REMOTE_H
|
||||||
#define REMOTE_H
|
#define REMOTE_H
|
||||||
|
|
||||||
#include "cache.h"
|
|
||||||
#include "parse-options.h"
|
#include "parse-options.h"
|
||||||
#include "hashmap.h"
|
#include "hashmap.h"
|
||||||
#include "refspec.h"
|
#include "refspec.h"
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
#ifndef SEQUENCER_H
|
#ifndef SEQUENCER_H
|
||||||
#define SEQUENCER_H
|
#define SEQUENCER_H
|
||||||
|
|
||||||
#include "cache.h"
|
|
||||||
#include "strbuf.h"
|
#include "strbuf.h"
|
||||||
#include "wt-status.h"
|
#include "wt-status.h"
|
||||||
|
|
||||||
struct commit;
|
struct commit;
|
||||||
|
struct index_state;
|
||||||
struct repository;
|
struct repository;
|
||||||
|
|
||||||
const char *git_path_commit_editmsg(void);
|
const char *git_path_commit_editmsg(void);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#ifndef XDIFF_INTERFACE_H
|
#ifndef XDIFF_INTERFACE_H
|
||||||
#define XDIFF_INTERFACE_H
|
#define XDIFF_INTERFACE_H
|
||||||
|
|
||||||
#include "cache.h"
|
#include "hash.h"
|
||||||
#include "xdiff/xdiff.h"
|
#include "xdiff/xdiff.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user