Skip to content

Commit 536f9fd

Browse files
committed
Put the most important and most frequency accessed struct member first.
1 parent c629d4c commit 536f9fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/setobject.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ no meaning otherwise.
2323

2424
typedef struct {
2525
/* Cached hash code of the key. */
26-
Py_hash_t hash;
2726
PyObject *key;
27+
Py_hash_t hash;
2828
} setentry;
2929

3030

0 commit comments

Comments
 (0)