summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2013-08-06 05:43:22 (GMT)
committerRaymond Hettinger <python@rcn.com>2013-08-06 05:43:22 (GMT)
commit536f9fdcf3bbaf3dbe52d8ff77e525fefcf60c09 (patch)
tree1e8531b187d969dc6ccb2a18cbd060a894487d76 /Include
parentc629d4c9a2b6ff92378ee1f2c8ed27f709d2b08e (diff)
downloadcpython-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.h2
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;