1
0
Fork 0
frr/tools/coccinelle/shorthand_operator.cocci

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
102 B
Text
Raw Normal View History

@@
identifier data;
constant x;
@@
(
- data = data + x
+ data += x
|
- data = data - x
+ data -= x
)