From: Neal Norwitz Date: Fri, 14 Apr 2006 03:53:34 +0000 (+0000) Subject: ALIGNMENT_SHIFT is not used X-Git-Tag: v2.5a2~251 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c0dc84398f4966ce368ac9606444437b6d1c1f0;p=python ALIGNMENT_SHIFT is not used --- 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)