]> granicus.if.org Git - graphviz/commitdiff
Remove 1 -Wunused-but-set-variable warning in compute_hierarchy.c
authorMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Sat, 7 Nov 2020 12:50:00 +0000 (13:50 +0100)
committerMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Sat, 21 Nov 2020 08:12:29 +0000 (09:12 +0100)
lib/neatogen/compute_hierarchy.c

index 11d05b497ac4d3deaa4bf343f7f3f9145dd82d27..618a10ba1774134c27eb94eae9eeb2077bb03466 100644 (file)
@@ -53,7 +53,6 @@ compute_hierarchy(vtx_data * graph, int n, double abs_tol,
 {
     double *y;
     int i, rv=0;
-    double spread;
     int use_given_levels = FALSE;
     int *ordering;
     int *levels;
@@ -79,9 +78,7 @@ compute_hierarchy(vtx_data * graph, int n, double abs_tol,
     }
     quicksort_place(y, ordering, 0, n - 1);
 
-    spread = y[ordering[n - 1]] - y[ordering[0]];
-
-    /* after spread is computed, we may take the y-coords as the given levels */
+    /* take the y-coords as the given levels */
     if (given_levels) {
        use_given_levels = TRUE;
        for (i = 0; i < n; i++) {