From 8c0dc84398f4966ce368ac9606444437b6d1c1f0 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Fri, 14 Apr 2006 03:53:34 +0000 Subject: [PATCH] ALIGNMENT_SHIFT is not used --- Python/pyarena.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Python/pyarena.c b/Python/pyarena.c index c5491e954a..24a7374300 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) -- 2.40.0