Fix compiler warning on Windows 64-bit: asdl_seq_SET() stores the index parameter

into a Py_ssize_t, instead of an int
This commit is contained in:
Victor Stinner 2013-11-16 00:16:58 +01:00
parent da062558db
commit 042cb465f6
1 changed files with 6 additions and 4 deletions

View File

@ -31,11 +31,13 @@ asdl_int_seq *_Py_asdl_int_seq_new(Py_ssize_t size, PyArena *arena);
#define asdl_seq_GET(S, I) (S)->elements[(I)]
#define asdl_seq_LEN(S) ((S) == NULL ? 0 : (S)->size)
#ifdef Py_DEBUG
#define asdl_seq_SET(S, I, V) { \
int _asdl_i = (I); \
assert((S) && _asdl_i < (S)->size); \
#define asdl_seq_SET(S, I, V) \
do { \
Py_ssize_t _asdl_i = (I); \
assert((S) != NULL); \
assert(_asdl_i < (S)->size); \
(S)->elements[_asdl_i] = (V); \
}
} while (0)
#else
#define asdl_seq_SET(S, I, V) (S)->elements[I] = (V)
#endif