From bf6a86236e829d08c92356e5c861193ccb516ef7 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sat, 8 Jun 2024 11:39:01 -0700 Subject: worktree_git_path(): move the declaration to path.h The definition of this function is in path.c but its declaration is in worktree.h, which is something unexpected. The function is explained as "Similar to git_path()"; declaring it next to where git_path() is declared would make more sense. Signed-off-by: Junio C Hamano --- worktree.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'worktree.h') diff --git a/worktree.h b/worktree.h index f14784a2ff..605ed6cb90 100644 --- a/worktree.h +++ b/worktree.h @@ -175,14 +175,6 @@ int other_head_refs(each_ref_fn fn, void *cb_data); int is_worktree_being_rebased(const struct worktree *wt, const char *target); int is_worktree_being_bisected(const struct worktree *wt, const char *target); -/* - * Similar to git_path() but can produce paths for a specified - * worktree instead of current one - */ -const char *worktree_git_path(const struct worktree *wt, - const char *fmt, ...) - __attribute__((format (printf, 2, 3))); - /* * Return a refname suitable for access from the current ref store. */ -- cgit v1.3