xref
: /
qemu
/
scripts
/
coccinelle
/
typecast.cocci
(revision 50c88402ca599e577f025e78a4380431be2b3f6d)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
// Remove useless casts
2
@@
3
type T;
4
T v;
5
@@
6
- (T *)&v
7
+ &v
8