diff options
| author | brian m. carlson <sandals@crustytoothpaste.net> | 2017-05-06 22:10:23 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2017-05-08 15:12:58 +0900 |
| commit | 984912989d6c4bc4c34bcf4296173ed96b22d272 (patch) | |
| tree | 84159f862273f5133ba579be1309e342f4fbdfee /builtin/diff.c | |
| parent | ref-filter: convert some static functions to struct object_id (diff) | |
| download | git-984912989d6c4bc4c34bcf4296173ed96b22d272.tar.gz git-984912989d6c4bc4c34bcf4296173ed96b22d272.zip | |
refs: convert struct ref_update to use 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_update E1;
@@
- E1.new_sha1
+ E1.new_oid.hash
@@
struct ref_update *E1;
@@
- E1->new_sha1
+ E1->new_oid.hash
@@
struct ref_update E1;
@@
- E1.old_sha1
+ E1.old_oid.hash
@@
struct ref_update *E1;
@@
- E1->old_sha1
+ E1->old_oid.hash
This transformation allows us to convert write_ref_to_lockfile, which is
required to convert parse_object.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/diff.c')
0 files changed, 0 insertions, 0 deletions
