Cleanup: mark VA_NARGS_COUNT as public

Was already used in two other headers, remove underscore prefix.
This commit is contained in:
Campbell Barton
2017-08-23 20:04:26 +10:00
parent 37cfa44222
commit b9513706cb
4 changed files with 10 additions and 10 deletions

View File

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