From: Raymond Hettinger Date: Mon, 5 Aug 2013 05:35:37 +0000 (-0700) Subject: Silence compiler warning for unused declaration. X-Git-Tag: v2.7.6rc1~256 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=007684a7013e9a6c75b953681fe0466def784fc7;p=thirdparty%2FPython%2Fcpython.git Silence compiler warning for unused declaration. --- diff --git a/Objects/setobject.c b/Objects/setobject.c index af1ce16bc29f..db5cee284037 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);