diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2017-05-07 00:10:21 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-08 08:12:57 +0200 |
commit | cedfc41ac62c691557263a8db41f7f693914d68d (patch) | |
tree | 4120173090660b6bdc3a2c91a0461ada84b6b9ea /ref-filter.h | |
parent | Convert the verify_pack callback to struct object_id (diff) | |
download | git-cedfc41ac62c691557263a8db41f7f693914d68d.tar.xz git-cedfc41ac62c691557263a8db41f7f693914d68d.zip |
Convert struct ref_array_item to struct object_id
Convert struct ref_array_item to use struct object_id by changing the
definition and applying the following semantic patch, plus the standard
object_id transforms:
@@
struct ref_array_item E1;
@@
- E1.objectname
+ E1.objectname.hash
@@
struct ref_array_item *E1;
@@
- E1->objectname
+ E1->objectname.hash
This transformation allows us to convert get_obj, which is needed to
convert parse_object_buffer.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'ref-filter.h')
-rw-r--r-- | ref-filter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ref-filter.h b/ref-filter.h index c20167aa3c..6552024f09 100644 --- a/ref-filter.h +++ b/ref-filter.h @@ -34,7 +34,7 @@ struct ref_sorting { }; struct ref_array_item { - unsigned char objectname[20]; + struct object_id objectname; int flag; unsigned int kind; const char *symref; |