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>2019-08-14 18:34:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-08-14 18:34:58 +0300
commit4b9e05b42898073c65d97e20295a773f6ce7e78b (patch)
tree620dc619f1a65a8c89127c108d2d99c436becbec /source/blender/blenlib
parent8cbe9f1b9ad8ba63eadbd15270338c24005e0e9c (diff)
Cleanup: clang-format, sort structs & cmake files
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/delaunay_2d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/delaunay_2d.c b/source/blender/blenlib/intern/delaunay_2d.c
index bb5bd6860c9..8e2687a6b2f 100644
--- a/source/blender/blenlib/intern/delaunay_2d.c
+++ b/source/blender/blenlib/intern/delaunay_2d.c
@@ -36,9 +36,9 @@
/* Uncomment this define to get helpful debugging functions etc. defined. */
// #define DEBUG_CDT
-struct CDTVert;
struct CDTEdge;
struct CDTFace;
+struct CDTVert;
typedef struct SymEdge {
struct SymEdge *next; /* In face, doing CCW traversal of face. */