aboutsummaryrefslogtreecommitdiffstats
path: root/notes.c
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2025-04-15 11:38:18 +0200
committerJunio C Hamano <gitster@pobox.com>2025-04-15 08:24:36 -0700
commitd9f517d051d1008178cb6c809b5f906d0905508f (patch)
treeb830a64b23f00fbfde86c651bf492a773023147a /notes.c
parent632b5e3ee274a2012a88bc32af2d9cf04c5bd363 (diff)
downloadgit-d9f517d051d1008178cb6c809b5f906d0905508f.tar.gz
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.c')
-rw-r--r--notes.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/notes.c b/notes.c
index ce5a1006a8..d9645c4b5d 100644
--- a/notes.c
+++ b/notes.c
@@ -6,8 +6,9 @@
#include "environment.h"
#include "hex.h"
#include "notes.h"
+#include "object-file.h"
#include "object-name.h"
-#include "object-store-ll.h"
+#include "object-store.h"
#include "utf8.h"
#include "strbuf.h"
#include "tree-walk.h"