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~303^2^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c86d7e989c98d57449263201e826a52c15102a64;p=thirdparty%2FPython%2Fcpython.git Silence compiler warning for an unused declaration --- diff --git a/Objects/setobject.c b/Objects/setobject.c index c484dce41389..ea5a24c51644 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);