summaryrefslogtreecommitdiff
path: root/refs.h
diff options
context:
space:
mode:
authorJonathan Tan <jonathantanmy@google.com>2020-09-01 15:28:08 -0700
committerJunio C Hamano <gitster@pobox.com>2020-09-02 14:39:17 -0700
commitec06b05568bb9dbb7333a5974b4512db18395674 (patch)
tree6bd34965bade1919680c023bfa944414929b57de /refs.h
parenta4f66a7876f6979f0a3ac254173cbdaf0a2a55c3 (diff)
downloadgit-ec06b05568bb9dbb7333a5974b4512db18395674.tar.gz
refs: move dwim_ref() to header file
This makes it clear that dwim_ref() is just repo_dwim_ref() without the first parameter. Signed-off-by: Jonathan Tan <jonathantanmy@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.h')
-rw-r--r--refs.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/refs.h b/refs.h
index f212f8945e..04a68540c3 100644
--- a/refs.h
+++ b/refs.h
@@ -1,6 +1,8 @@
#ifndef REFS_H
#define REFS_H
+#include "cache.h"
+
struct object_id;
struct ref_store;
struct repository;
@@ -151,7 +153,11 @@ void expand_ref_prefix(struct argv_array *prefixes, const char *prefix);
int expand_ref(struct repository *r, const char *str, int len, struct object_id *oid, char **ref);
int repo_dwim_ref(struct repository *r, const char *str, int len, struct object_id *oid, char **ref);
int repo_dwim_log(struct repository *r, const char *str, int len, struct object_id *oid, char **ref);
-int dwim_ref(const char *str, int len, struct object_id *oid, char **ref);
+static inline int dwim_ref(const char *str, int len, struct object_id *oid,
+ char **ref)
+{
+ return repo_dwim_ref(the_repository, str, len, oid, ref);
+}
int dwim_log(const char *str, int len, struct object_id *oid, char **ref);
/*