diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-04-11 20:41:18 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-04-11 20:41:18 +0000 |
commit | 9b745f6665da02c4349e8a4e592dc42d6524b8d1 (patch) | |
tree | 9f07599313448cb9c6fa712b7eb256c1bb7d32f5 /Include/dictobject.h | |
parent | Since xmllib is deprecated now, suppress the DeprecationWarning its test (diff) | |
download | cpython-9b745f6665da02c4349e8a4e592dc42d6524b8d1.tar.gz cpython-9b745f6665da02c4349e8a4e592dc42d6524b8d1.tar.bz2 cpython-9b745f6665da02c4349e8a4e592dc42d6524b8d1.zip |
Get rid of USE_CACHE_ALIGNED. It has no function anymore.
Diffstat (limited to 'Include/dictobject.h')
-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 547430ea938..27ef90d3b41 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; /* |