1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-04-19 22:53:59 +02:00

csum-file.h: remove unnecessary inclusion of cache.h

With the change in the last commit to move several functions to
write-or-die.h, csum-file.h no longer needs to include cache.h.
However, removing that include forces several other C files, which
directly or indirectly dependend upon csum-file.h's inclusion of
cache.h, to now be more explicit about their dependencies.

Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Elijah Newren 2023-03-21 06:26:08 +00:00 committed by Junio C Hamano
parent d48be35ca6
commit ec2f026961
12 changed files with 13 additions and 10 deletions

View File

@ -1,7 +1,7 @@
/*
* Copyright (c) 2011, Google Inc.
*/
#include "git-compat-util.h"
#include "cache.h"
#include "alloc.h"
#include "bulk-checkin.h"
#include "environment.h"

View File

@ -3,6 +3,7 @@
#include "chunk-format.h"
#include "csum-file.h"
#include "gettext.h"
#include "trace2.h"
/*
* When writing a chunk-based file format, collect the chunks in

View File

@ -1,4 +1,4 @@
#include "git-compat-util.h"
#include "cache.h"
#include "config.h"
#include "gettext.h"
#include "hex.h"

View File

@ -1,7 +1,6 @@
#ifndef CSUM_FILE_H
#define CSUM_FILE_H
#include "cache.h"
#include "hash.h"
#include "write-or-die.h"

View File

@ -1,4 +1,4 @@
#include "git-compat-util.h"
#include "cache.h"
#include "alloc.h"
#include "attr.h"
#include "object.h"

View File

@ -1,4 +1,4 @@
#include "git-compat-util.h"
#include "cache.h"
#include "alloc.h"
#include "repository.h"
#include "config.h"

2
midx.c
View File

@ -1,4 +1,4 @@
#include "git-compat-util.h"
#include "cache.h"
#include "abspath.h"
#include "alloc.h"
#include "config.h"

View File

@ -6,7 +6,7 @@
* This handles basic git object files - packing, unpacking,
* creation etc.
*/
#include "git-compat-util.h"
#include "cache.h"
#include "abspath.h"
#include "alloc.h"
#include "config.h"

View File

@ -1,4 +1,4 @@
#include "git-compat-util.h"
#include "cache.h"
#include "alloc.h"
#include "environment.h"
#include "gettext.h"
@ -17,6 +17,7 @@
#include "pack-objects.h"
#include "commit-reach.h"
#include "prio-queue.h"
#include "trace2.h"
struct bitmapped_commit {
struct commit *commit;

View File

@ -1,4 +1,4 @@
#include "git-compat-util.h"
#include "cache.h"
#include "alloc.h"
#include "commit.h"
#include "gettext.h"

2
pack.h
View File

@ -4,6 +4,8 @@
#include "object.h"
#include "csum-file.h"
struct packed_git;
struct pack_window;
struct repository;
/*

View File

@ -1,4 +1,4 @@
#include "git-compat-util.h"
#include "cache.h"
#include "alloc.h"
#include "environment.h"
#include "gettext.h"