diff --git a/Include/cpython/longintrepr.h b/Include/cpython/longintrepr.h index ff4155f9656def..31d0d451844a20 100644 --- a/Include/cpython/longintrepr.h +++ b/Include/cpython/longintrepr.h @@ -50,6 +50,7 @@ typedef int64_t stwodigits; /* signed variant of twodigits */ #define _PyLong_DECIMAL_SHIFT 9 /* max(e such that 10**e fits in a digit) */ #define _PyLong_DECIMAL_BASE ((digit)1000000000) /* 10 ** DECIMAL_SHIFT */ #elif PYLONG_BITS_IN_DIGIT == 15 +#error "15-bit digits not supported" typedef unsigned short digit; typedef short sdigit; /* signed variant of digit */ typedef unsigned long twodigits; diff --git a/PCbuild/pcbuild.proj b/PCbuild/pcbuild.proj index f32422a0acf44a..b50ad5c70db4b5 100644 --- a/PCbuild/pcbuild.proj +++ b/PCbuild/pcbuild.proj @@ -18,7 +18,7 @@ - $(PreferredToolArchitecture) + $(Platform) $(Configuration) Release