From b274d18aec525621bcb0a2234fc65e09398616c2 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Tue, 28 Jul 2020 16:32:30 +0200 Subject: Cleanup: correct usage of extern-C blocks in various places This removes extern-C blocks around other includes and adds such blocks for some headers that need them. --- source/blender/python/intern/bpy_app_opensubdiv.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source/blender/python/intern/bpy_app_opensubdiv.h') diff --git a/source/blender/python/intern/bpy_app_opensubdiv.h b/source/blender/python/intern/bpy_app_opensubdiv.h index f04fa6fb44d..f659e58c071 100644 --- a/source/blender/python/intern/bpy_app_opensubdiv.h +++ b/source/blender/python/intern/bpy_app_opensubdiv.h @@ -21,6 +21,14 @@ #ifndef __BPY_APP_OPENSUBDIV_H__ #define __BPY_APP_OPENSUBDIV_H__ +#ifdef __cplusplus +extern "C" { +#endif + PyObject *BPY_app_opensubdiv_struct(void); +#ifdef __cplusplus +} +#endif + #endif /* __BPY_APP_OPENSUBDIV_H__ */ -- cgit v1.2.3