From: brian m. carlson Date: Fri, 24 Jun 2016 23:09:25 +0000 (+0000) Subject: merge-recursive: convert struct stage_data to use object_id X-Git-Tag: v2.10.0-rc0~110^2~4 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/fd429e986de0fd380b63c0a1949b72ef076f58cc?hp=fd429e986de0fd380b63c0a1949b72ef076f58cc merge-recursive: convert struct stage_data to use object_id 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 Signed-off-by: Junio C Hamano ---