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>2015-08-20 12:22:09 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-08-20 12:37:14 +0300
commit3ec9ff16f888cc30b5fe728953a8368d0a2c0275 (patch)
tree1d474ddbf3c70eea0c0f15246abdb37d3ae9a8ff /source/blender/python/mathutils/mathutils_bvhtree.c
parent179a2e1b98b048e5b9f607eee23f94f22d8234aa (diff)
Resolve MSVC/OpenMP compat issue
Diffstat (limited to 'source/blender/python/mathutils/mathutils_bvhtree.c')
-rw-r--r--source/blender/python/mathutils/mathutils_bvhtree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/mathutils/mathutils_bvhtree.c b/source/blender/python/mathutils/mathutils_bvhtree.c
index a3b1d6d3e30..506b64709e3 100644
--- a/source/blender/python/mathutils/mathutils_bvhtree.c
+++ b/source/blender/python/mathutils/mathutils_bvhtree.c
@@ -451,7 +451,7 @@ struct PyBVHTree_OverlapData {
float epsilon;
};
-static bool py_bvhtree_overlap_cb(void *userdata, int index_a, int index_b, unsigned int UNUSED(thread))
+static bool py_bvhtree_overlap_cb(void *userdata, int index_a, int index_b, int UNUSED(thread))
{
struct PyBVHTree_OverlapData *data = userdata;
PyBVHTree *tree_a = data->tree_pair[0];