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:00:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-08-23 13:16:17 +0300
commit37cfa44222a6bdb92c825e614404a1c7e6bb97f8 (patch)
treefd65d5503d18b21d7441373103e72f36e4b66830 /source/blender/python
parent1a76bc7aeb8ccdffde2d52b9ef66c8af24920aba (diff)
Cleanup: move variadic defines to their own header
So we can use in headers without pulling in many other defines.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/generic/py_capi_utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/generic/py_capi_utils.h b/source/blender/python/generic/py_capi_utils.h
index 95d3f1d3775..bdfbbb75653 100644
--- a/source/blender/python/generic/py_capi_utils.h
+++ b/source/blender/python/generic/py_capi_utils.h
@@ -28,7 +28,7 @@
#define __PY_CAPI_UTILS_H__
#include "BLI_sys_types.h"
-#include "BLI_utildefines.h" /* only for _VA_NARGS_COUNT */
+#include "BLI_variadic_defines.h"
void PyC_ObSpit(const char *name, PyObject *var);
void PyC_LineSpit(void);