From: Matthew Fernandez Date: Sun, 30 May 2021 16:41:55 +0000 (-0700) Subject: remove unused macros LT and GT X-Git-Tag: 2.47.3~11^2~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f3ad38a03537a516ef5c3cbfd2607f115e7c1461;p=graphviz remove unused macros LT and GT --- diff --git a/lib/pathplan/route.c b/lib/pathplan/route.c index c182ee53e..14e959b29 100644 --- a/lib/pathplan/route.c +++ b/lib/pathplan/route.c @@ -34,9 +34,6 @@ typedef struct tna_t { #define POINTSIZE sizeof (Ppoint_t) -#define LT(pa, pbp) ((pa.y > pbp->y) || ((pa.y == pbp->y) && (pa.x < pbp->x))) -#define GT(pa, pbp) ((pa.y < pbp->y) || ((pa.y == pbp->y) && (pa.x > pbp->x))) - typedef struct p2e_t { Ppoint_t *pp; Pedge_t *ep;