From: Raymond Hettinger Date: Sun, 4 Aug 2013 19:00:36 +0000 (-0700) Subject: Silence compiler warning for an unused declaration X-Git-Tag: v3.4.0a2~296^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c86d7e989c98d57449263201e826a52c15102a64;p=python Silence compiler warning for an unused declaration --- diff --git a/Objects/setobject.c b/Objects/setobject.c index c484dce413..ea5a24c516 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);