PyAPI: resolve build error with Python 3.10

Resolves T89931
This commit is contained in:
Campbell Barton 2021-08-09 22:55:41 +10:00
parent 6deb37474e
commit 6fe00939b0

@ -95,7 +95,11 @@ Py_hash_t mathutils_array_hash(const float *array, size_t array_len)
x = 0x345678UL;
i = 0;
while (--len >= 0) {
#if PY_VERSION_HEX >= 0x30a0000 /* Version: 3.10. */
y = _Py_HashDouble(NULL, (double)(array[i++]));
#else
y = _Py_HashDouble((double)(array[i++]));
#endif
if (y == -1) {
return -1;
}