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
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