Skip to content

Commit 7b4d50e

Browse files
committed
make M$ happy again
1 parent 84714a4 commit 7b4d50e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pythoncapi_compat.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1763,10 +1763,10 @@ typedef struct PyLongLayout {
17631763
} PyLongLayout;
17641764

17651765
static const PyLongLayout PyLong_LAYOUT = {
1766-
.bits_per_digit = PyLong_SHIFT,
1767-
.digit_size = sizeof(digit),
1768-
.digits_order = -1, // least significant first
1769-
.endianness = PY_LITTLE_ENDIAN ? -1 : 1,
1766+
PyLong_SHIFT,
1767+
sizeof(digit),
1768+
-1, // least significant first
1769+
PY_LITTLE_ENDIAN ? -1 : 1,
17701770
};
17711771

17721772
typedef struct PyLongExport {

0 commit comments

Comments
 (0)