diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-10-30 15:43:48 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-10-30 15:43:48 +0900 |
commit | da3e0752cdfe7ae535b4e740f162f1e4926d4201 (patch) | |
tree | 6c2f666dc5962b86db4ffe24532f06870b57ba4f /contrib | |
parent | 67224b7b5a51223e933467204d077c658b367b42 (diff) | |
parent | b84c7838829f997e0a0028b678b7ae8f7a21cc62 (diff) | |
download | git-da3e0752cdfe7ae535b4e740f162f1e4926d4201.tar.gz |
Merge branch 'jc/cocci-preincr'
Code cleanup.
* jc/cocci-preincr:
fsck: s/++i > 1/i++/
cocci: simplify "if (++u > 1)" to "if (u++)"
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/coccinelle/preincr.cocci | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/coccinelle/preincr.cocci b/contrib/coccinelle/preincr.cocci new file mode 100644 index 0000000000..7fe1e8d2d9 --- /dev/null +++ b/contrib/coccinelle/preincr.cocci @@ -0,0 +1,5 @@ +@ preincrement @ +identifier i; +@@ +- ++i > 1 ++ i++ |