From: Matthew Fernandez Date: Sat, 18 Dec 2021 16:34:29 +0000 (-0800) Subject: generateNonoverlapConstraints: [nfc] use a C99 bool instead of boolean X-Git-Tag: 3.0.0~122^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed2380bddd3cff049b6f62e0cda42a83c3aa06a7;p=graphviz generateNonoverlapConstraints: [nfc] use a C99 bool instead of boolean --- diff --git a/lib/neatogen/quad_prog_vpsc.c b/lib/neatogen/quad_prog_vpsc.c index f9fb1c733..bdac4fab6 100644 --- a/lib/neatogen/quad_prog_vpsc.c +++ b/lib/neatogen/quad_prog_vpsc.c @@ -382,7 +382,7 @@ void generateNonoverlapConstraints(CMajEnvVPSC * e, int i, j, mol = 0; int n = e->nv + e->nldv; boxf* bb = N_GNEW (n, boxf); - boolean genclusters = opt->clusters->nclusters > 0; + bool genclusters = opt->clusters->nclusters > 0; if (genclusters) { /* n is the number of real variables, not dummy cluster vars */ n -= 2 * opt->clusters->nclusters;