If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified.

This commit is contained in:
Victor Stinner 2013-06-25 00:37:25 +02:00
parent b28a375f2f
commit 14b9b11098
7 changed files with 20 additions and 20 deletions

View file

@ -263,7 +263,7 @@ typedef size_t Py_uhash_t;
*/
#ifdef HAVE_LONG_LONG
# ifndef PY_FORMAT_LONG_LONG
# if defined(MS_WIN64) || defined(MS_WINDOWS)
# ifdef MS_WINDOWS
# define PY_FORMAT_LONG_LONG "I64"
# else
# error "This platform's pyconfig.h needs to define PY_FORMAT_LONG_LONG"