diff options
| author | Patrick Steinhardt <ps@pks.im> | 2025-04-15 11:38:18 +0200 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-04-15 08:24:36 -0700 |
| commit | d9f517d051d1008178cb6c809b5f906d0905508f (patch) | |
| tree | b830a64b23f00fbfde86c651bf492a773023147a /notes-cache.c | |
| parent | object-file: move `xmmap()` into "wrapper.c" (diff) | |
| download | git-d9f517d051d1008178cb6c809b5f906d0905508f.tar.gz git-d9f517d051d1008178cb6c809b5f906d0905508f.zip | |
object-file: split out functions relating to object store subsystem
While we have the "object-store.h" header, most of the functionality for
object stores is actually hosted in "object-file.c". This makes it hard
to find relevant functions and causes us to mix up concerns.
Split out functions relating to the object store subsystem into a new
"object-store.c" file.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'notes-cache.c')
| -rw-r--r-- | notes-cache.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/notes-cache.c b/notes-cache.c index ecfdf6e43b..150241b15e 100644 --- a/notes-cache.c +++ b/notes-cache.c @@ -2,7 +2,8 @@ #include "git-compat-util.h" #include "notes-cache.h" -#include "object-store-ll.h" +#include "object-file.h" +#include "object-store.h" #include "pretty.h" #include "repository.h" #include "commit.h" |
