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-08-23 13:04:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-08-23 13:16:17 +0300
commitb9513706cb57290f5b7ecf085d933c832d622fa7 (patch)
tree80b00b16dff611b51724e452714acddde4d5db49 /source/blender/python/generic/python_utildefines.h
parent37cfa44222a6bdb92c825e614404a1c7e6bb97f8 (diff)
Cleanup: mark VA_NARGS_COUNT as public
Was already used in two other headers, remove underscore prefix.
Diffstat (limited to 'source/blender/python/generic/python_utildefines.h')
-rw-r--r--source/blender/python/generic/python_utildefines.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/generic/python_utildefines.h b/source/blender/python/generic/python_utildefines.h
index a7d82586dc0..2d2d19c05f5 100644
--- a/source/blender/python/generic/python_utildefines.h
+++ b/source/blender/python/generic/python_utildefines.h
@@ -36,7 +36,7 @@ extern "C" {
PyTupleObject *op = (PyTupleObject *)op_arg; \
PyObject **ob_items = op->ob_item; \
CHECK_TYPE_ANY(op_arg, PyObject *, PyTupleObject *); \
- BLI_assert(_VA_NARGS_COUNT(__VA_ARGS__) == PyTuple_GET_SIZE(op)); \
+ BLI_assert(VA_NARGS_COUNT(__VA_ARGS__) == PyTuple_GET_SIZE(op)); \
ARRAY_SET_ITEMS(ob_items, __VA_ARGS__); \
} (void)0