Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c86d7e9

Browse files
committed
Silence compiler warning for an unused declaration
1 parent e56666d commit c86d7e9

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

Objects/setobject.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,6 @@ static int
214214
set_insert_key(register PySetObject *so, PyObject *key, Py_hash_t hash)
215215
{
216216
register setentry *entry;
217-
typedef setentry *(*lookupfunc)(PySetObject *, PyObject *, Py_hash_t);
218217

219218
assert(so->lookup != NULL);
220219
entry = so->lookup(so, key, hash);

0 commit comments

Comments
 (0)