From 536f9fdcf3bbaf3dbe52d8ff77e525fefcf60c09 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Mon, 5 Aug 2013 22:43:22 -0700 Subject: Put the most important and most frequency accessed struct member first. --- Include/setobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Include/setobject.h') diff --git a/Include/setobject.h b/Include/setobject.h index a14874bb0f6..31f2123534c 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; -- cgit v1.2.3