From: Kristján Valur Jónsson Date: Thu, 22 Mar 2012 23:10:37 +0000 (+0000) Subject: Issue #14387 : undefine 'small' so that it doesn't clash with Windows headers. X-Git-Tag: v3.2.3~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa589b3ca7b2bf680b6d9338a0fbf831289f067f;p=python Issue #14387 : undefine 'small' so that it doesn't clash with Windows headers. --- diff --git a/Include/accu.h b/Include/accu.h index 9655d37bb1..3636ea6c98 100644 --- a/Include/accu.h +++ b/Include/accu.h @@ -16,6 +16,8 @@ extern "C" { #endif +#undef small /* defined by some Windows headers */ + typedef struct { PyObject *large; /* A list of previously accumulated large strings */ PyObject *small; /* Pending small strings */