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>2017-11-29 08:09:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-11-29 08:13:26 +0300
commitc17c6557b4ea4bfeb4528b74703795798aedaa66 (patch)
tree04559e5492c946672bd45272e216be9c9f5cce7e /source/blender/python/mathutils/mathutils_bvhtree.h
parent26a64ba23a8e5586f2dfb72195a30bcf8acd9c90 (diff)
PyAPI: add function to check any mathutils type
Also add CheckExact versions of type checking macros.
Diffstat (limited to 'source/blender/python/mathutils/mathutils_bvhtree.h')
-rw-r--r--source/blender/python/mathutils/mathutils_bvhtree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/mathutils/mathutils_bvhtree.h b/source/blender/python/mathutils/mathutils_bvhtree.h
index 634556d68f7..445a393b93e 100644
--- a/source/blender/python/mathutils/mathutils_bvhtree.h
+++ b/source/blender/python/mathutils/mathutils_bvhtree.h
@@ -30,7 +30,7 @@ PyMODINIT_FUNC PyInit_mathutils_bvhtree(void);
extern PyTypeObject PyBVHTree_Type;
-#define PyBVHTree_Check(_v) PyObject_TypeCheck((_v), &PyBVHTree_Type)
+#define PyBVHTree_Check(v) PyObject_TypeCheck((v), &PyBVHTree_Type)
#define PyBVHTree_CheckExact(v) (Py_TYPE(v) == &PyBVHTree_Type)
#endif /* __MATHUTILS_BVHTREE_H__ */