Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-08-09 15:55:41 +0300
committerJeroen Bakker <jeroen@blender.org>2021-08-23 10:19:53 +0300
commit690fa2ba86a05b3196a8bc4f78df47f3d5da9b51 (patch)
tree05ac2b8f212984347498793b9880b346b39ad7ae
parent7b1e8e244c76400426e27dcc586683f81763955a (diff)
PyAPI: resolve build error with Python 3.10
Resolves T89931
-rw-r--r--source/blender/python/mathutils/mathutils.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/python/mathutils/mathutils.c b/source/blender/python/mathutils/mathutils.c
index 3791a6c2d29..ad65b23ba3d 100644
--- a/source/blender/python/mathutils/mathutils.c
+++ b/source/blender/python/mathutils/mathutils.c
@@ -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;
}