Interesting case. Yes, I think marking such things as bugs (or some other
category) in the tracker makes sense. If you want you can use the
"infrastructure" keyword to mark that it is not about the code itself, but I'm
not sure how consistent we are with using the keywords. (Keywords are taken from
a fixed set and mainly useful for saved queries and things like that.)
hg uncrustify does actually recommend changing something (due to its
architecture, it cannot be internally inconsistent about complaining in general
vs. recommending a concrete change; you will see why if you check how the three
modes of status/diff/modify of "hg uncrustify" are implemented), but what it
recommend makes no sense. It wants to insert a blank line. And if you do that,
it wants to insert another blank line, etc. (Try "hg uncrustify --diff", and you
will see the "+" indicating an added blank line.)
If you want, you can submit a bug report to the uncrustify project (but that
requires first trying with their latest version, I guess), but for our purposes
a simpler fix is to change the formatting.
We generally follow the rule "If an inner block has braces, the outer block
should also have braces." It's not documented on the wiki; we generally only
document the things that cause problems multiple times to avoid the coding
conventions documentations becoming too long to read. So in this example, we
would use
if (CND1) {
if (CND2) {
CODE;
}
}
(A version without braces is generally also possible, but not here because CODE
has multiple statements.)
|