Am 05.02.2018 um 19:13 schrieb Salz, Rich:
>  
>
> Do not put a size after sizeof; do use parens.
>

nit: Do not put a /space /after sizeof.

>  
>
> Treat a single-statement with comment as if it were multi-line and use
> curly braces
>
>  
>
>                 if (test()) {
>
>                     /* already alerted */
>
>                     close();
>
>                 }
>
>  
>

Wasn't there also the suggestion by someone that if one part of an
if-else statements needs braces that the other part should get some, too?

    if (foo)
        do_this();
    else
        do_that();

vs.

    if (foo) {
        /* some statements */
        ...
    } else {
        ...
    }


Matthias

_______________________________________________
openssl-project mailing list
[email protected]
https://mta.openssl.org/mailman/listinfo/openssl-project

Reply via email to