summary refs log tree commit diff stats
path: root/scripts/ordereddict.py
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2011-07-25 18:55:53 +0300
committerAnthony Liguori <aliguori@us.ibm.com>2011-07-29 09:33:56 -0500
commit5f070c5fb768cc587b1a75379b7b17c3f841fd40 (patch)
tree99cbf3de3b393d0078c2ea65832a7559b2e3d6cf /scripts/ordereddict.py
parentecf169b7fa920b87e380981c5206148d057d85fb (diff)
downloadfocaccia-qemu-5f070c5fb768cc587b1a75379b7b17c3f841fd40.tar.gz
focaccia-qemu-5f070c5fb768cc587b1a75379b7b17c3f841fd40.zip
CODING_STYLE: explicitly allow braceless 'else if'
It's already allowed by the example; there are about 1800 instances in the
tree; and disallowing it would lead to

    if (a) {
        ...
    } else {
        if (b) {
            ...
        } else {
            if (c) {
                ...
            } else {
                if (d) {
                    ...
                } else {
                    ...
                }
            }
        }
    }

instead of

    if (a) {
        ...
    } else if (b) {
        ...
    } else if (c) {
        ...
    } else if (d) {
        ...
    } else {
        ...
    }

which is more readable.

Acked-by: Blue Swirl <blauwirbel@gmail.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'scripts/ordereddict.py')
0 files changed, 0 insertions, 0 deletions