Put the most important and most frequency accessed struct member first.

This commit is contained in:
Raymond Hettinger 2013-08-05 22:43:22 -07:00
parent c629d4c9a2
commit 536f9fdcf3
1 changed files with 1 additions and 1 deletions

View File

@ -23,8 +23,8 @@ no meaning otherwise.
typedef struct {
/* Cached hash code of the key. */
Py_hash_t hash;
PyObject *key;
Py_hash_t hash;
} setentry;