From cf93b65a65f948d4014d3fd2f7541ffe1b2209d4 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Mon, 2 Mar 2020 15:04:53 +0100 Subject: Cleanup: make remaining blenlib headers work in C++ Differential Revision: https://developer.blender.org/D6988 Reviewers: brecht --- source/blender/blenlib/BLI_voronoi_2d.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source/blender/blenlib/BLI_voronoi_2d.h') diff --git a/source/blender/blenlib/BLI_voronoi_2d.h b/source/blender/blenlib/BLI_voronoi_2d.h index fd457dc1a9a..947b120f51a 100644 --- a/source/blender/blenlib/BLI_voronoi_2d.h +++ b/source/blender/blenlib/BLI_voronoi_2d.h @@ -26,6 +26,10 @@ struct ListBase; * \ingroup bli */ +#ifdef __cplusplus +extern "C" { +#endif + typedef struct VoronoiSite { float co[2]; float color[3]; @@ -74,4 +78,8 @@ void BLI_voronoi_triangulate(const VoronoiSite *sites, int (**triangles_r)[3], int *triangles_total_r); +#ifdef __cplusplus +} +#endif + #endif /* __BLI_VORONOI_2D_H__ */ -- cgit v1.2.3