Resolve MSVC/OpenMP compat issue

This commit is contained in:
2015-08-20 19:22:09 +10:00
parent 179a2e1b98
commit 3ec9ff16f8
4 changed files with 10 additions and 10 deletions

View File

@@ -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];