summaryrefslogtreecommitdiffstats
path: root/Include/dictobject.h
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2002-04-11 20:41:18 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2002-04-11 20:41:18 (GMT)
commit9b745f6665da02c4349e8a4e592dc42d6524b8d1 (patch)
tree9f07599313448cb9c6fa712b7eb256c1bb7d32f5 /Include/dictobject.h
parenta7c2b303d43fcc0414fed6dca84d9e8dcf1fceab (diff)
downloadcpython-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/dictobject.h')
-rw-r--r--Include/dictobject.h3
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;
/*