Commit e9c89e83 authored by Raymond Hettinger's avatar Raymond Hettinger

Silence a GCC unused variable warning in debug builds.

parent a0e0cd30
......@@ -450,8 +450,7 @@ deque_dealloc(dequeobject *deque)
if (deque->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *) deque);
if (deque->leftblock != NULL) {
int err = deque_clear(deque);
assert(err == 0);
deque_clear(deque);
assert(deque->leftblock != NULL);
PyMem_Free(deque->leftblock);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment