mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
05b4ed61f4
It is more common to use post-increment than pre-increment when the side effect is the primary thing we want in our code and in C in general (unlike C++). Initializing a variable to 0, incrementing it every time we do something, and checking if we have already done that thing to guard the code to do that thing, is easier to understand when written if (u++) ; /* we've done that! */ else do_it(); /* just once. */ but if you try to use pre-increment, you end up with a less natural looking if (++u > 1) Signed-off-by: Junio C Hamano <gitster@pobox.com>
5 lines
50 B
Text
5 lines
50 B
Text
@ preincrement @
|
|
identifier i;
|
|
@@
|
|
- ++i > 1
|
|
+ i++
|