From: Jack Jansen Date: Thu, 11 Apr 2002 20:41:18 +0000 (+0000) Subject: Get rid of USE_CACHE_ALIGNED. It has no function anymore. X-Git-Tag: v2.3c1~6046 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9b745f6665da02c4349e8a4e592dc42d6524b8d1;p=python Get rid of USE_CACHE_ALIGNED. It has no function anymore. --- diff --git a/Include/dictobject.h b/Include/dictobject.h index 547430ea93..27ef90d3b4 100644 --- a/Include/dictobject.h +++ b/Include/dictobject.h @@ -45,9 +45,6 @@ typedef struct { long me_hash; /* cached hash code of me_key */ PyObject *me_key; PyObject *me_value; -#ifdef USE_CACHE_ALIGNED - long aligner; -#endif } PyDictEntry; /*