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:
Diffstat (limited to 'source/blender/blenlib/BLI_polyfill_2d.h')
-rw-r--r--source/blender/blenlib/BLI_polyfill_2d.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_polyfill_2d.h b/source/blender/blenlib/BLI_polyfill_2d.h
index 4b229cc6c1e..cb12b73c1d5 100644
--- a/source/blender/blenlib/BLI_polyfill_2d.h
+++ b/source/blender/blenlib/BLI_polyfill_2d.h
@@ -21,6 +21,10 @@
* \ingroup bli
*/
+#ifdef __cplusplus
+extern "C" {
+#endif
+
struct MemArena;
void BLI_polyfill_calc_arena(const float (*coords)[2],
@@ -38,4 +42,8 @@ void BLI_polyfill_calc(const float (*coords)[2],
/* default size of polyfill arena */
#define BLI_POLYFILL_ARENA_SIZE MEM_SIZE_OPTIMAL(1 << 14)
+#ifdef __cplusplus
+}
+#endif
+
#endif /* __BLI_POLYFILL_2D_H__ */