Browse Source

treewide: be explicit about dependence on convert.h

Signed-off-by: Elijah Newren <newren@gmail.com>
Acked-by: Calvin Wan <calvinwan@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
main
Elijah Newren 1 year ago committed by Junio C Hamano
parent
commit
73359a9b43
  1. 1
      archive.c
  2. 1
      blame.c
  3. 1
      builtin/cat-file.c
  4. 1
      builtin/ls-files.c
  5. 1
      cache.h
  6. 1
      combine-diff.c
  7. 1
      config.c
  8. 1
      convert.c
  9. 1
      diff.c
  10. 1
      dir.c
  11. 1
      environment.c
  12. 1
      ll-merge.c
  13. 1
      object-file.c
  14. 1
      streaming.c
  15. 1
      unpack-trees.h

1
archive.c

@ -2,6 +2,7 @@ @@ -2,6 +2,7 @@
#include "abspath.h"
#include "alloc.h"
#include "config.h"
#include "convert.h"
#include "environment.h"
#include "gettext.h"
#include "hex.h"

1
blame.c

@ -3,6 +3,7 @@ @@ -3,6 +3,7 @@
#include "object-store.h"
#include "cache-tree.h"
#include "mergesort.h"
#include "convert.h"
#include "diff.h"
#include "diffcore.h"
#include "gettext.h"

1
builtin/cat-file.c

@ -7,6 +7,7 @@ @@ -7,6 +7,7 @@
#include "cache.h"
#include "alloc.h"
#include "config.h"
#include "convert.h"
#include "builtin.h"
#include "diff.h"
#include "environment.h"

1
builtin/ls-files.c

@ -8,6 +8,7 @@ @@ -8,6 +8,7 @@
#include "cache.h"
#include "repository.h"
#include "config.h"
#include "convert.h"
#include "quote.h"
#include "dir.h"
#include "builtin.h"

1
cache.h

@ -6,7 +6,6 @@ @@ -6,7 +6,6 @@
#include "hashmap.h"
#include "list.h"
#include "gettext.h"
#include "convert.h"
#include "string-list.h"
#include "pack-revindex.h"
#include "hash.h"

1
combine-diff.c

@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
#include "cache.h"
#include "object-store.h"
#include "commit.h"
#include "convert.h"
#include "blob.h"
#include "diff.h"
#include "diffcore.h"

1
config.c

@ -12,6 +12,7 @@ @@ -12,6 +12,7 @@
#include "date.h"
#include "branch.h"
#include "config.h"
#include "convert.h"
#include "environment.h"
#include "gettext.h"
#include "ident.h"

1
convert.c

@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
#include "cache.h"
#include "advice.h"
#include "config.h"
#include "convert.h"
#include "gettext.h"
#include "hex.h"
#include "object-store.h"

1
diff.c

@ -5,6 +5,7 @@ @@ -5,6 +5,7 @@
#include "abspath.h"
#include "alloc.h"
#include "config.h"
#include "convert.h"
#include "environment.h"
#include "gettext.h"
#include "tempfile.h"

1
dir.c

@ -9,6 +9,7 @@ @@ -9,6 +9,7 @@
#include "abspath.h"
#include "alloc.h"
#include "config.h"
#include "convert.h"
#include "dir.h"
#include "environment.h"
#include "gettext.h"

1
environment.c

@ -10,6 +10,7 @@ @@ -10,6 +10,7 @@
#include "cache.h"
#include "abspath.h"
#include "branch.h"
#include "convert.h"
#include "environment.h"
#include "gettext.h"
#include "repository.h"

1
ll-merge.c

@ -6,6 +6,7 @@ @@ -6,6 +6,7 @@

#include "cache.h"
#include "config.h"
#include "convert.h"
#include "attr.h"
#include "xdiff-interface.h"
#include "run-command.h"

1
object-file.c

@ -10,6 +10,7 @@ @@ -10,6 +10,7 @@
#include "abspath.h"
#include "alloc.h"
#include "config.h"
#include "convert.h"
#include "environment.h"
#include "gettext.h"
#include "hex.h"

1
streaming.c

@ -2,6 +2,7 @@ @@ -2,6 +2,7 @@
* Copyright (c) 2011, Google Inc.
*/
#include "cache.h"
#include "convert.h"
#include "environment.h"
#include "streaming.h"
#include "repository.h"

1
unpack-trees.h

@ -2,6 +2,7 @@ @@ -2,6 +2,7 @@
#define UNPACK_TREES_H

#include "cache.h"
#include "convert.h"
#include "strvec.h"
#include "string-list.h"
#include "tree-walk.h"

Loading…
Cancel
Save