summaryrefslogtreecommitdiffstats
path: root/Python/pyarena.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/pyarena.c')
-rw-r--r--Python/pyarena.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/pyarena.c b/Python/pyarena.c
index c5491e9..24a7374 100644
--- a/Python/pyarena.c
+++ b/Python/pyarena.c
@@ -13,7 +13,6 @@
#define DEFAULT_BLOCK_SIZE 8192
#define ALIGNMENT 8
-#define ALIGNMENT_SHIFT 3
#define ALIGNMENT_MASK (ALIGNMENT - 1)
#define ROUNDUP(x) (((x) + ALIGNMENT_MASK) & ~ALIGNMENT_MASK)