summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2009-02-25 08:32:10 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-02-26 08:49:44 (GMT)
commit5483f79998c5a9705d453a713d11fb7591329ed4 (patch)
treee80ce636a4c7618b184a5749e0dc09f7515cb054 /cache.h
parent119c8eeede81489b2ce8b26ae7dcb47290e257eb (diff)
downloadgit-5483f79998c5a9705d453a713d11fb7591329ed4.zip
git-5483f79998c5a9705d453a713d11fb7591329ed4.tar.gz
git-5483f79998c5a9705d453a713d11fb7591329ed4.tar.bz2
refactor find_ref_by_name() to accept const list
Since it doesn't actually touch its argument, this makes sense. However, we still want to return a non-const version (which requires a cast) so that this: struct ref *a, *b; a = find_ref_by_name(b); works. Unfortunately, you can also silently strip the const from a variable: struct ref *a; const struct ref *b; a = find_ref_by_name(b); This is a classic C const problem because there is no way to say "return the type with the same constness that was passed to us"; we provide the same semantics as standard library functions like strchr. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Jay Soffian <jaysoffian@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index 189151d..609380d 100644
--- a/cache.h
+++ b/cache.h
@@ -801,7 +801,7 @@ struct ref {
#define REF_HEADS (1u << 1)
#define REF_TAGS (1u << 2)
-extern struct ref *find_ref_by_name(struct ref *list, const char *name);
+extern struct ref *find_ref_by_name(const struct ref *list, const char *name);
#define CONNECT_VERBOSE (1u << 0)
extern struct child_process *git_connect(int fd[2], const char *url, const char *prog, int flags);