diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-04-11 20:41:18 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-04-11 20:41:18 (GMT) |
commit | 9b745f6665da02c4349e8a4e592dc42d6524b8d1 (patch) | |
tree | 9f07599313448cb9c6fa712b7eb256c1bb7d32f5 /Include | |
parent | a7c2b303d43fcc0414fed6dca84d9e8dcf1fceab (diff) | |
download | cpython-9b745f6665da02c4349e8a4e592dc42d6524b8d1.zip cpython-9b745f6665da02c4349e8a4e592dc42d6524b8d1.tar.gz cpython-9b745f6665da02c4349e8a4e592dc42d6524b8d1.tar.bz2 |
Get rid of USE_CACHE_ALIGNED. It has no function anymore.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/dictobject.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/dictobject.h b/Include/dictobject.h index 547430e..27ef90d 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; /* |