From dc8f3e901b3055b2b754c01506154ef0bf89727e Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Mon, 13 Jul 2020 20:02:53 -0700 Subject: [PATCH] make overlap.h prototypes unconditionally visible to remove_overlap() This makes it difficult for remove_overlap() definitions to drift out of line from its declaration without causing a compile error. Related to #1544. --- lib/neatogen/overlap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/neatogen/overlap.c b/lib/neatogen/overlap.c index 705cb8ca5..e410e5546 100644 --- a/lib/neatogen/overlap.c +++ b/lib/neatogen/overlap.c @@ -12,11 +12,11 @@ *************************************************************************/ #include "config.h" +#include "overlap.h" #if ((defined(HAVE_GTS) || defined(HAVE_TRIANGLE)) && defined(SFDP)) #include "SparseMatrix.h" -#include "overlap.h" #include "call_tri.h" #include "red_black_tree.h" #include "types.h" -- 2.50.1