fix -Wextra warning for empty `else' body
authorMark Lodato <lodatom@gmail.com>
Tue, 6 Oct 2009 08:54:49 +0000 (01:54 -0700)
committerMark Lodato <lodatom@gmail.com>
Tue, 6 Oct 2009 08:54:49 +0000 (01:54 -0700)
commit5d8d9abf4d3e7885739d83ca4a95a5f6cda4a68d
tree3eae3e9109691acee2b0deda900e266360b67bf6
parent69af13ce799f88bcfff0df952b1c868bbcf364e2
fix -Wextra warning for empty `else' body

From faba5d52ae82239f522c108b51fa18dbb1ae9a8b Mon Sep 17 00:00:00 2001
Date: Mon, 5 Oct 2009 22:49:07 -0400
The macros XDECREF, XGIVEREF, and XGOTREF used ";" to denote an empty if
and else body, but these raised the following warning when compiled with
"gcc -Wall -Wextra":

    warning: suggest braces around empty body in an `else' statement
---
 Cython/Compiler/ModuleNode.py |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
Cython/Compiler/ModuleNode.py