From: Matthew Fernandez Date: Sun, 9 Oct 2022 20:12:07 +0000 (-0700) Subject: common: remove unused 'PI' constant X-Git-Tag: 6.0.2~3^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8a2e20de31f4bb913067af2322a067ed8f9360b8;p=graphviz common: remove unused 'PI' constant --- diff --git a/lib/common/ellipse.c b/lib/common/ellipse.c index c340831b4..79634fe11 100644 --- a/lib/common/ellipse.c +++ b/lib/common/ellipse.c @@ -57,8 +57,6 @@ #define MAX(a,b) ((a)>(b)?(a):(b)) #define MIN(a,b) ((a)<(b)?(a):(b)) -#define PI 3.14159265358979323846 - typedef struct { double x, y; } pointf;