summaryrefslogtreecommitdiff
path: root/decorate.h
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2008-08-20 17:55:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-08-20 20:30:49 (GMT)
commit54988bdad7dc3f09e40752221c144bf470d73aa7 (patch)
treef0c09c0757f8cfe35aac8fb8065c21e321e92f38 /decorate.h
parente276c26b4b65711c27e3ef37e732d41eeae42094 (diff)
downloadgit-54988bdad7dc3f09e40752221c144bf470d73aa7.zip
git-54988bdad7dc3f09e40752221c144bf470d73aa7.tar.gz
git-54988bdad7dc3f09e40752221c144bf470d73aa7.tar.bz2
decorate: allow const objects to be decorated
We don't actually modify the struct object, so there is no reason not to accept const versions (and this allows other callsites, like the next patch, to use the decoration machinery). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'decorate.h')
-rw-r--r--decorate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/decorate.h b/decorate.h
index 1fa4ad9..e732804 100644
--- a/decorate.h
+++ b/decorate.h
@@ -2,7 +2,7 @@
#define DECORATE_H
struct object_decoration {
- struct object *base;
+ const struct object *base;
void *decoration;
};
@@ -12,7 +12,7 @@ struct decoration {
struct object_decoration *hash;
};
-extern void *add_decoration(struct decoration *n, struct object *obj, void *decoration);
-extern void *lookup_decoration(struct decoration *n, struct object *obj);
+extern void *add_decoration(struct decoration *n, const struct object *obj, void *decoration);
+extern void *lookup_decoration(struct decoration *n, const struct object *obj);
#endif