mirror of https://github.com/python/cpython.git
Silence compiler warning for an unused declaration
This commit is contained in:
parent
e56666d17f
commit
c86d7e989c
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue