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>2018-02-23 04:59:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-02-23 04:59:55 +0300
commitdd77e4515159187cf188706d53c6769e62346a21 (patch)
tree3ba467d0f3f2dda9161ff415388a3a7956bccb47 /source/blender/blenlib/BLI_voronoi_2d.h
parent71e00252f0aa394cc48b869d221619e0d5645ad1 (diff)
Cleanup: header guards & style
Diffstat (limited to 'source/blender/blenlib/BLI_voronoi_2d.h')
-rw-r--r--source/blender/blenlib/BLI_voronoi_2d.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenlib/BLI_voronoi_2d.h b/source/blender/blenlib/BLI_voronoi_2d.h
index 51d1d5aa88e..8d1ff2d4c2b 100644
--- a/source/blender/blenlib/BLI_voronoi_2d.h
+++ b/source/blender/blenlib/BLI_voronoi_2d.h
@@ -23,8 +23,8 @@
* ***** END GPL LICENSE BLOCK *****
*/
-#ifndef __BLI_VORONOI_H__
-#define __BLI_VORONOI_H__
+#ifndef __BLI_VORONOI_2D_H__
+#define __BLI_VORONOI_2D_H__
struct ListBase;
@@ -67,4 +67,4 @@ void BLI_voronoi_triangulate(const VoronoiSite *sites, int sites_total, struct L
VoronoiTriangulationPoint **triangulated_points_r, int *triangulated_points_total_r,
int (**triangles_r)[3], int *triangles_total_r);
-#endif /* __BLI_VORONOI_H__ */
+#endif /* __BLI_VORONOI_2D_H__ */