mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Fix compilation warning with gcc 4.8 (unused typedef)
This commit is contained in:
parent
1a1a06ee36
commit
5e946bacef
1 changed files with 0 additions and 1 deletions
|
@ -214,7 +214,6 @@ static int
|
||||||
set_insert_key(register PySetObject *so, PyObject *key, Py_hash_t hash)
|
set_insert_key(register PySetObject *so, PyObject *key, Py_hash_t hash)
|
||||||
{
|
{
|
||||||
register setentry *entry;
|
register setentry *entry;
|
||||||
typedef setentry *(*lookupfunc)(PySetObject *, PyObject *, Py_hash_t);
|
|
||||||
|
|
||||||
assert(so->lookup != NULL);
|
assert(so->lookup != NULL);
|
||||||
entry = so->lookup(so, key, hash);
|
entry = so->lookup(so, key, hash);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue