Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
merge-recursive: convert struct stage_data to use object_id
author
brian m. carlson
<sandals@crustytoothpaste.net>
Fri, 24 Jun 2016 23:09:25 +0000
(23:09 +0000)
committer
Junio C Hamano
<gitster@pobox.com>
Tue, 28 Jun 2016 18:39:02 +0000
(11:39 -0700)
Convert the anonymous struct within struct stage_data to use struct
object_id. The following Coccinelle semantic patch was used to
implement this, followed by the transformations in object_id.cocci:
@@
struct stage_data o;
expression E1;
@@
- o.stages[E1].sha
+ o.stages[E1].oid.hash
@@
struct stage_data *p;
expression E1;
@@
- p->stages[E1].sha
+ p->stages[E1].oid.hash
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
raw
|
patch
|
inline
| side by side (from:
fd429e9
)
No differences found