summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2013-08-05 05:35:37 (GMT)
committerRaymond Hettinger <python@rcn.com>2013-08-05 05:35:37 (GMT)
commit007684a7013e9a6c75b953681fe0466def784fc7 (patch)
treef83db542bfd67c8d96a814196d0109f7be3a7b59 /Objects
parentf9489436041b319ffab52eb1769d11849d68129d (diff)
downloadcpython-007684a7013e9a6c75b953681fe0466def784fc7.zip
cpython-007684a7013e9a6c75b953681fe0466def784fc7.tar.gz
cpython-007684a7013e9a6c75b953681fe0466def784fc7.tar.bz2
Silence compiler warning for unused declaration.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/setobject.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c
index af1ce16..db5cee2 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -212,7 +212,6 @@ static int
set_insert_key(register PySetObject *so, PyObject *key, long hash)
{
register setentry *entry;
- typedef setentry *(*lookupfunc)(PySetObject *, PyObject *, long);
assert(so->lookup != NULL);
entry = so->lookup(so, key, hash);