diff options
author | Matthias Klose <doko@ubuntu.com> | 2009-04-05 12:43:08 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2009-04-05 12:43:08 (GMT) |
commit | 0610e0808b8cd16137a0859a70bcf47a16da9aa5 (patch) | |
tree | 14e65255d79e674435a8a679d8ebef6d0a3d40b6 /Include | |
parent | 6c59e72576c37d4452c47ba84c9f7d98c2681a8f (diff) | |
download | cpython-0610e0808b8cd16137a0859a70bcf47a16da9aa5.zip cpython-0610e0808b8cd16137a0859a70bcf47a16da9aa5.tar.gz cpython-0610e0808b8cd16137a0859a70bcf47a16da9aa5.tar.bz2 |
- Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings.
(avoiding brown paper typo this time)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/object.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Include/object.h b/Include/object.h index cfca64f..3d898f9 100644 --- a/Include/object.h +++ b/Include/object.h @@ -749,11 +749,13 @@ PyAPI_FUNC(void) _Py_AddToAllObjects(PyObject *, int force); ((PyObject*)(op))->ob_refcnt++) #define Py_DECREF(op) \ - if (_Py_DEC_REFTOTAL _Py_REF_DEBUG_COMMA \ - --((PyObject*)(op))->ob_refcnt != 0) \ - _Py_CHECK_REFCNT(op) \ - else \ - _Py_Dealloc((PyObject *)(op)) + do { \ + if (_Py_DEC_REFTOTAL _Py_REF_DEBUG_COMMA \ + --((PyObject*)(op))->ob_refcnt != 0) \ + _Py_CHECK_REFCNT(op) \ + else \ + _Py_Dealloc((PyObject *)(op)); \ + } while (0) /* Safely decref `op` and set `op` to NULL, especially useful in tp_clear * and tp_dealloc implementatons. |