diff options
author | Raymond Hettinger <python@rcn.com> | 2013-08-06 05:43:22 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2013-08-06 05:43:22 (GMT) |
commit | 536f9fdcf3bbaf3dbe52d8ff77e525fefcf60c09 (patch) | |
tree | 1e8531b187d969dc6ccb2a18cbd060a894487d76 /Include | |
parent | c629d4c9a2b6ff92378ee1f2c8ed27f709d2b08e (diff) | |
download | cpython-536f9fdcf3bbaf3dbe52d8ff77e525fefcf60c09.zip cpython-536f9fdcf3bbaf3dbe52d8ff77e525fefcf60c09.tar.gz cpython-536f9fdcf3bbaf3dbe52d8ff77e525fefcf60c09.tar.bz2 |
Put the most important and most frequency accessed struct member first.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/setobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/setobject.h b/Include/setobject.h index a14874b..31f2123 100644 --- a/Include/setobject.h +++ b/Include/setobject.h @@ -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; |