Re: [Qemu-devel] [PATCH 0/7] Remove useless casts

2016-09-14 Thread Michael Tokarev
15.06.2016 19:14, Laurent Vivier wrote: This series is the result of the following coccinelle script: @@ type T; T v; @@ - (T *)&v + &v This script removes the cast of a variable when the variable is already of the casting type. The script is added in script

Re: [Qemu-devel] [PATCH 0/7] Remove useless casts

2016-06-23 Thread Laurent Vivier
Ping? Laurent On 15/06/2016 18:14, Laurent Vivier wrote: > This series is the result of the following coccinelle script: > > @@ > type T; > T v; > @@ > - (T *)&v > + &v > > This script removes the cast of a variable when the variable > is already of the casti