summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2013-08-04 19:00:36 (GMT)
committerRaymond Hettinger <python@rcn.com>2013-08-04 19:00:36 (GMT)
commitc86d7e989c98d57449263201e826a52c15102a64 (patch)
tree49cdd009af155ae2aa705eee8607c0f867a9108d /Objects
parente56666d17f0b92f474ca85b65ccaafc4c57aa36b (diff)
downloadcpython-c86d7e989c98d57449263201e826a52c15102a64.zip
cpython-c86d7e989c98d57449263201e826a52c15102a64.tar.gz
cpython-c86d7e989c98d57449263201e826a52c15102a64.tar.bz2
Silence compiler warning for an 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 c484dce..ea5a24c 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -214,7 +214,6 @@ static int
set_insert_key(register PySetObject *so, PyObject *key, Py_hash_t hash)
{
register setentry *entry;
- typedef setentry *(*lookupfunc)(PySetObject *, PyObject *, Py_hash_t);
assert(so->lookup != NULL);
entry = so->lookup(so, key, hash);