Thomas Rast <trast@xxxxxxxxxxxxxxx> a écrit :
- We avoid using braces unnecessarily. I.e. if (bla) { x = 1; } is frowned upon. A gray area is when the statement extends over a few lines, and/or you have a lengthy comment atop of it. Also, like in the Linux kernel, if there is a long list of "else if" statements, it can make sense to add braces to single line blocks. I'm not the one who wrote them, but I'm taking the last sentence to mean that you should not put the braces unless the omission will break the vertical alignment of the 'else if' chain.
I agree with you and that's what I thought. Still Junio C Hamano <gitster@xxxxxxxxx> a écrit :
Two points on style (also appear elsewhere in this patch): if (!"applying") { ... } else { state->rebase_in_progress = 1; } - "else" comes on the same line as closing "}" of its "if" block; - if one of if/else if/else chain has multiple statement block, use {} even for a single statement block in the chain.
-- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html