]> granicus.if.org Git - graphviz/commitdiff
remove inlining of flip_rec_box
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 2 Apr 2021 00:03:37 +0000 (17:03 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 8 Apr 2021 03:31:44 +0000 (20:31 -0700)
With a modern compiler, the inline keyword is more or less ignored and the
compiler makes a (usually better) decision itself.

lib/common/geom.c

index 9bb0a1568d0817b573bc1633e2109318933e4fcf..0e12e40b256cf3bd70c1cab51ae883401ccf3c79 100644 (file)
@@ -15,9 +15,6 @@
 
 #include <common/geom.h>
 #include <common/geomprocs.h>
-#ifdef _WIN32
-#define inline 
-#endif
 
 box mkbox(point p, point q)
 {
@@ -192,9 +189,7 @@ int lineToBox(pointf p, pointf q, boxf b)
     }
     return -1;
 }
-#ifdef WIN32_STATIC
-#define inline
-#endif
+
 void rect2poly(pointf *p)
 {
     p[3].x = p[2].x = p[1].x;
@@ -342,7 +337,7 @@ pointf ccwrotatepf(pointf p, int ccwrot)
     return p;
 }
 
-inline box flip_rec_box(box b, point p)
+box flip_rec_box(box b, point p)
 {
     box r;
     /* flip box */
@@ -374,11 +369,6 @@ boxf flip_rec_boxf(boxf b, pointf p)
     return r;
 }
 
-#ifdef WIN32_STATIC
-#undef inline
-#endif
-
-
 #define SMALL 0.0000000001
 
 /* ptToLine2: